我有一个存储为 的字符串tempP
,因为我没有使用 C++ 的经验。我想知道如何在字符串中添加一个单词。因此,例如在 C# 中它将是
tempP = tempP + "addtext";
正如您所料:
#include <iostream>
#include <string>
int main()
{
std::string tempP("temp");
tempP += "addText"; // the same as tempP = tempP + "addtext";
std::cout << tempP << std::endl;
return 0;
}
输出:tempaddText
std:string temp("something");
temp = temp + "addtext";
现在 temp 是一些addtext。