Escaping a # symbol in a #define macro?(在#define 宏中转义# 符号?)
问题描述
在不涉及血淋淋的细节的情况下,我想使用一个 #define
宏,该宏将扩展为一个 #include
但#"符号会混淆预处理器(如它认为我想引用一个论点.)
Without going into the gory details I want to use a #define
macro that will expand to a #include
but the '#' sign is confusing the preprocessor (as it thinks I want to quote an argument.)
例如,我想做这样的事情:
For example, I want to do something like this:
#define MACRO(name) #include "name##foo"
然后这样使用它:
MACRO(Test)
这将扩展为:
#include "Testfoo"
不起眼的 # 符号导致预处理器出错.MinGW 给我以下错误:
The humble # sign is causing the preprocessor to barf. MinGW gives me the following error:
'#'后面没有宏参数
我想我需要转义 # 符号,但如果这可能的话我不会.
I guess I need to escape the # sign but I don't if this is even possible.
是的,宏确实是邪恶的……
Yes, macros are indeed evil...
推荐答案
据我所知,你不能在定义中使用另一个预处理器指令.
As far as I remember you cannot use another preprocessor directive in define.
这篇关于在#define 宏中转义# 符号?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在#define 宏中转义# 符号?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01