C语言中,如何获取先前声明的变量的左值标识符?
In language C. How to get the lvalue identifier of a previously declared variable?
我的目的是创建函数 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 != '[=10=]'; 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 中是否有任何函数可以让我获得先前声明的变量的特征,例如它的左值?
谢谢!
在 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 != '[=10=]'; 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(零)开始。
我的目的是创建函数 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 != '[=10=]'; 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 中是否有任何函数可以让我获得先前声明的变量的特征,例如它的左值?
谢谢!
在 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 != '[=10=]'; 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(零)开始。