为什么字符串concat宏不适合这个" +"案件?

时间:2014-08-01 02:57:31

标签: c++ gcc macros clang

简短的问题:

是否允许为字符串连接宏+连接-##等特殊符号?例如,

#define OP(var) operator##var

OP(+)扩展为operator+

确切的问题:

#include "z3++.h"
#include <unordered_map>

namespace z3 {
z3::expr operator+(z3::expr const &, z3::expr const &);
}

typedef z3::expr (*MyOperatorTy)(z3::expr const &, z3::expr const &);

#define STR(var) #var
#define z3Op(var) static_cast<MyOperatorTy>(&z3::operator##var)
#define StrOpPair(var) \
  { STR(var), z3Op(var) }

void test() {
  std::unordered_map<std::string, MyOperatorTy> strOpMap1{
      {"+", static_cast<MyOperatorTy>(&z3::operator+)}};  // fine
  std::unordered_map<std::string, MyOperatorTy> strOpMap2{StrOpPair(+)}; // error
}

对于strOpMap2,使用clang++ -c -std=c++11,报告:

error: pasting formed 'operator+', an invalid preprocessing token

在使用g++ -c -std=c++11时,它会给出:

error: pasting "operator" and "+" does not give a valid preprocessing token

通过阅读the manual by gcc我发现它应该可以连接,但为什么两个编译器都会发出错误?

1 个答案:

答案 0 :(得分:5)

您可以粘贴标点符号以形成其他标点符号,例如

#define PASTE(a,b) a##b

int main()
{
     int i = 0;
     i PASTE(+,+);
     // i == 1 now
}

##运算符用于从其他预处理标记生成有效的预处理标记。粘贴的结果必须是有效的预处理标记。所以这是无效的:

PASTE(i,++)

因为i++不是预处理令牌;它是两个相邻的令牌i++

可能的令牌列表是(N3797):

  • 头名
  • 标识符
  • PP-数
  • 字符字面
  • 用户定义字符的字面
  • 字串文本
  • 用户定义-字串文本
  • 预处理-OP-或-PUNC
  • 每个非白色空格字符,不能是上述
  • 之一

注意:在预处理阶段,关键字不存在;但是在预处理之后,任何应该是关键字的标识符都会(在语义上)转换为关键字。因此,您可以通过粘贴较短的单词来构建关键字。

在您的代码中,operator+是两个令牌:operator+。所以你不用##构建它;你只做一个然后另一个。

#define OP(punc) operator punc