[C++]代入演算子で文字列を結合するサンプル

2021年5月20日

書式
変数名 +=文字列
使用例

#include <iostream>
using namespace std;

int main() {
      string strA = "test";
      strA += "123";
    
    string strB = "debug";
      strB += "456";

      cout << "result1: "+strA << endl; 
    cout << "result2: "+strB << endl; 
      return 0;
}

実行結果
result1: test123
result2: debug456

C++

Posted by arkgame