-2

我有一个存储为 的字符串tempP,因为我没有使用 C++ 的经验。我想知道如何在字符串中添加一个单词。因此,例如在 C# 中它将是

tempP = tempP + "addtext";
4

2 回答 2

6

正如您所料:

#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

于 2013-08-25T02:04:58.260 回答
3
std:string temp("something");
temp = temp + "addtext";

现在 temp 是一些addtext。

于 2013-08-25T02:05:13.953 回答