在 C 语言中。如何获取先前声明的变量的左值标识符?
Posted
技术标签:
【中文标题】在 C 语言中。如何获取先前声明的变量的左值标识符?【英文标题】:In language C. How to get the lvalue identifier of a previously declared variable? 【发布时间】:2020-08-23 07:56:18 【问题描述】:我的目的是创建函数void print_chars(char *imp)
来打印字符串的元素。字符串通过引用传递给函数,使用指针。
#include <stdio.h>
#define len(x, y) sizeof(x) / sizeof(y)
void print_chars(char*);
/* Function to print the characters of a string passed by reference to
* the function.*/
int main(int argc, char *argv[])
/* Definition of the string and its characteristics. */
/* The "lvalue" of the string is "m_str". */
char m_str[] = "123456\n89 ab";
int length_a = len(m_str, m_str[0]);
/* Let's point to the string to print it*/
char *imprimatur = m_str;
print_chars(imprimatur);
return 0;
void print_chars(char *imp)
unsigned int i = 1;
char *c;
for (c = imp; *c != '\0'; c++, i++)
printf("xxx[%d] = %c\n", i, *c);
/* ^ How to write here the original name of the lvalue
* originally assigned outside the funcion? */
这是一个输出示例:
xxx[1] = 1
xxx[2] = 2
...
这是预期的输出:
m_str[1] = 1
m_str[2] = 2
...
C 中是否有任何函数可以让我获得先前声明的变量的特征,例如它的左值?
谢谢!
【问题讨论】:
您误用了“左值”这个词。不,没有办法。void print_chars(char *name, char *imp) /* ... */ printf("%s[%d] = %c\n", name, i, *c); /* ... */
并从 main 调用它为 print_chars("m_str", imprimatur);
。否则,不行,不可能得到变量的源代码名。
【参考方案1】:
在 C 中,无法在运行时获取源代码变量名。
所以你必须编写一些代码来实现你的目标。您必须扩展 print_chars
以便它也将名称作为参数,例如 void print_chars(char *name, char *imp)
,然后像 print_chars("m_str", m_str);
一样调用它
这既容易出错(因为您可能拼错名称)也很烦人(因为您需要输入两次)。要解决这个问题,您可以使用宏。
类似:
#define PRINT_NAMED_CHARS(var) print_chars(#var, var)
void print_chars(char *name, char *imp)
unsigned int i = 1;
char *c;
for (c = imp; *c != '\0'; c++, i++)
printf("%s[%d] = %c\n", name, i, *c);
int main()
char m_str[] = "123";
PRINT_NAMED_CHARS(m_str);
char other_str[] = "abc";
PRINT_NAMED_CHARS(other_str);
return 0;
输出
m_str[1] = 1
m_str[2] = 2
m_str[3] = 3
other_str[1] = a
other_str[2] = b
other_str[3] = c
顺便说一句
对我来说,从 1(一)开始打印索引是错误的。在 C 中,索引总是从 0(零)开始。
【讨论】:
以上是关于在 C 语言中。如何获取先前声明的变量的左值标识符?的主要内容,如果未能解决你的问题,请参考以下文章