问题描述
使用 C++ 预处理器指令,是否可以测试预处理器符号是否已定义但没有值?类似的东西:
Using C++ preprocessor directives, is it possible to test if a preprocessor symbol has been defined but has no value? Something like that:
#define MYVARIABLE
#if !defined(MYVARIABLE) || #MYVARIABLE == ""
... blablabla ...
#endif
我这样做的原因是因为我正在处理的项目应该通过 /DMYSTR=$(MYENVSTR)/DMYSTR=$(MYENVSTR),并且此字符串可能为空.如果用户忘记定义这个字符串,我想确保项目无法编译.
The reason why I am doing it is because the project I'm working on is supposed to take a string from the environment through /DMYSTR=$(MYENVSTR), and this string might be empty. I want to make sure that the project fails to compile if user forgot to define this string.
推荐答案
Soma 宏魔法:
#define DO_EXPAND(VAL) VAL ## 1
#define EXPAND(VAL) DO_EXPAND(VAL)
#if !defined(MYVARIABLE) || (EXPAND(MYVARIABLE) == 1)
Only here if MYVARIABLE is not defined
OR MYVARIABLE is the empty string
#endif
请注意,如果您在命令行中定义了 MYVARIABLE,则默认值为 1:
Note if you define MYVARIABLE on the command line the default value is 1:
g++ -DMYVARIABLE <file>
这里 MYVARIABLE 的值是空字符串:
Here the value of MYVARIABLE is the empty string:
g++ -DMYVARIABLE= <file>
引用问题解决了:
#define DO_QUOTE(X) #X
#define QUOTE(X) DO_QUOTE(X)
#define MY_QUOTED_VAR QUOTE(MYVARIABLE)
std::string x = MY_QUOTED_VAR;
std::string p = QUOTE(MYVARIABLE);
这篇关于如何测试预处理器符号是否已#define'd 但没有值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)