【发布时间】:2012-06-15 20:14:50
【问题描述】:
为什么这不起作用?
const std::string exclam = "!";
const std::string message = "Hello" + ", world" + exclam;
但是这很好用
const std::string exclam = "!";
const std::string message = exclam +
"Hello" + ", world" ;
请给我解释一下。
谢谢
【问题讨论】: