标签: c++ c-preprocessor
使用C ++预处理器指令,我需要实现这样的目标:
std :: cout << wrapinquotes(hithere) << std :: endl;
并打印出hithere。我天真地尝试过像
hithere
#define wrapinquotes(x) "x"
但正如您可以轻易想象的那样,我打印出了x。有没有办法实现这个目标?
x