可能重复:
连接两个字符串文字
为什么这不起作用?
const std::string exclam = "!";
const std::string message = "Hello" + ", world" + exclam;
但这很好用
const std::string exclam = "!";
const std::string message = exclam +
"Hello" + ", world" ;
请给我解释一下。
谢谢