让某个东西既是 C 标识符又是字符串?
假设您想使用 C/C++ 宏生成标识符和字符串的匹配列表
enum
{
NAME_ONE,
NAME_TWO,
NAME_THREE
};
myFunction(NAME_ONE, "NAME_ONE");
myFunction(NAME_TWO, "NAME_TWO");
myFunction(NAME_THREE, "NAME_THREE");
..无需重复自己,也无需自动生成代码
初始猜测:
的 #include 文件
myDefine(NAME_ONE)
myDefine(NAME_TWO)
myDefine(NAME_THREE)
您可以添加一个包含“Then” 使用它两次,例如:
#define myDefine(a) a,
enum {
#include "definitions"
}
#undef myDefine
#define myDefine(a) myFunc(a, "a");
#include "definitions"
#undef myDefine
但是 #define 不允许您将参数放入字符串中?
Say you want to generate a matched list of identifiers and strings
enum
{
NAME_ONE,
NAME_TWO,
NAME_THREE
};
myFunction(NAME_ONE, "NAME_ONE");
myFunction(NAME_TWO, "NAME_TWO");
myFunction(NAME_THREE, "NAME_THREE");
..without repeating yourself, and without auto-generating the code, using C/C++ macros
Initial guess:
You could add an #include file containing
myDefine(NAME_ONE)
myDefine(NAME_TWO)
myDefine(NAME_THREE)
Then use it twice like:
#define myDefine(a) a,
enum {
#include "definitions"
}
#undef myDefine
#define myDefine(a) myFunc(a, "a");
#include "definitions"
#undef myDefine
but #define doesn't let you put parameters within a string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于第二个 #define,您需要使用 # 预处理器运算符,如下所示:
将参数转换为字符串。
For your second #define, you need to use the # preprocessor operator, like this:
That converts the argument to a string.
这是声明姓名列表的好方法:
这样该姓名列表可以多次重复使用。 我已经用它来制作新语言功能的原型,尽管从未最终使用它们。 因此,如果不出意外的话,它们是在自己的发明中找到死胡同的好方法。 我想知道是否是因为他们所说的:“宏很糟糕”......:)
Here's a good way to declare name-list:
This way this name-list can be re-used multiple times. I have used it for prototyping new language features, although never ended up using them. So, if nothing else, they were a great way to find dead-ends in own inventions. I wonder if it's because what they say: "macros are bad"... :)