通过预处理器指令检查变量的类型
有没有办法通过预处理器检查变量的类型?
实际上我想做这样的事情:
//test.c
int main(void)
{
TYPE a=6;
#if TYPE==int
printf("%d\n",a);
#elif TYPE==float
printf("%f\n",a);
#endif
}
现在我将它用作:
gcc -o test -D TYPE=float test.c
但它不起作用。 TYPE 始终与 int 匹配并根据 %d 给出结果。
请帮我解决这个问题。
Is there a way to check the type of variable by preprocessor ?
Actually I want to do something like this :
//test.c
int main(void)
{
TYPE a=6;
#if TYPE==int
printf("%d\n",a);
#elif TYPE==float
printf("%f\n",a);
#endif
}
Now I use it as :
gcc -o test -D TYPE=float test.c
But it is not working. TYPE is always matching with int and giving result according to %d.
Please help me to solve this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
结合使用以下链接中的技术:
https://github.com/pfultz2/Cloak/wiki/C-Preprocessor-tricks,-tips,-and-idioms
http://jhnet.co.uk/articles/cpp_magic
您甚至可以在https://godbolt.org/ 带有 -E 编译器选项。
Using a combination of techniques from the following links:
https://github.com/pfultz2/Cloak/wiki/C-Preprocessor-tricks,-tips,-and-idioms
http://jhnet.co.uk/articles/cpp_magic
You can even test it out at https://godbolt.org/ with the -E compiler option.
预处理器无法比较这样的字符串。请参阅此常见问题解答。执行此操作的方法是通过 #defining 选项,并且有一个示例可以帮助您。
The preprocessor can't compare strings like that. See this FAQ. The way to do it is by #defining the options, and there is an example there to help you.