我正在尝试定义一个宏,假设它采用2个字符串值并返回它们之间的一个空格连接。似乎我可以使用除了空格之外我想要的任何角色,例如:
#define conc(str1,str2) #str1 ## #str2
#define space_conc(str1,str2) conc(str1,-) ## #str2
space_conc(idan,oop);
space_conc
将返回“idan-oop”
我想要一些东西回归“idan oop”,建议?
答案 0 :(得分:48)
试试这个
#define space_conc(str1,str2) #str1 " " #str2
'##'用于连接符号,而不是字符串。字符串可以简单地并置在C中,编译器将连接它们,这就是这个宏的作用。首先将str1和str2转换为字符串(如果你像space_conc(hello, world)
一样使用它,请说“你好”和“世界”)并将它们放在彼此旁边,并在它们之间放置简单的单空格字符串。也就是说,结果扩展将由编译器解释,如
"hello" " " "world"
它将连接到
"hello world"
HTH
修改的
为了完整性,宏扩展中的'##'运算符就像这样使用,假设你有
#define dumb_macro(a,b) a ## b
如果调用dumb_macro(hello, world)
,将导致以下结果
helloworld
这不是一个字符串,而是一个符号,你可能会得到一个未定义的符号错误,说'helloworld'不存在,除非你先定义它。这是合法的:
int helloworld;
dumb_macro(hello, world) = 3;
printf ("helloworld = %d\n", helloworld); // <-- would print 'helloworld = 3'
答案 1 :(得分:5)
#define space_conc(str1, str2) #str1 " " #str2
printf("%s", space_conc(hello, you)); // Will print "hello you"
答案 2 :(得分:0)
正确的做法是将2个字符串放在另一个旁边。 '##'不起作用。只是:
#define concatenatedstring string1 string2