C++ 宏 '##' 在 '->' 之后不起作用操作员

2022-01-11 00:00:00 macros c++ c++11

我有一个shared_ptr对象x,它有如下get和set方法:

I have a shared_ptr object x, which has get and set methods as follows:

x->a_value();
x->set_a_value();
x->b_value();
x->set_b_value();

当我尝试定义宏时:

#define MAC(type) 
  x->set_##type##_value(val);

MAC(a)

它工作正常,但是当我这样做时:

It works fine, but when I do:

#define MAC(type) 
  x->##type##_value();

MAC(a)

它给出以下编译错误:粘贴形成的'->a',一个无效的预处理令牌

推荐答案

预处理器处理令牌" - 喜欢名称和运算符.

The preprocessor works on "tokens" - likes names and operators.

## 运算符通过将较小的部分粘贴在一起来创建新标记.在第一个示例中,set_##type##_value 变为 set_a_value,这是一个有效的令牌.

The ## operator creates a new token by pasting smaller parts together. In the first example set_##type##_value becomes set_a_value, which is a valid token.

在第二个示例中,->##type##_value 将变为 ->a_value,这不是有效的预处理器令牌.应该是两个token.

In the second example ->##type##_value would become ->a_value, which is not a valid preprocessor token. It ought to be two tokens.

如果您只是将行 x->type##_value(); 它应该可以工作.你会得到单独的标记 x, ->, a_value, (, ), 和 ;.

If you just make the line x->type##_value(); it should work. You get the separate tokens x, ->, a_value, (, ), and ;.

相关文章