重複の可能性:
2 つの文字列リテラルを連結する
なぜこれが機能しないのですか?
const std::string exclam = "!";
const std::string message = "Hello" + ", world" + exclam;
しかし、これはうまくいきます
const std::string exclam = "!";
const std::string message = exclam +
"Hello" + ", world" ;
私に説明してください。
ありがとう