如何连接两个字符串?

发布于 2024-12-06 01:52:42 字数 434 浏览 0 评论 0原文

可能的重复:
如何在一行上连接多个 C++ 字符串?< /a>

我将如何采取:

string test1 = "Hello ";
string test2 = "World!";

并将它们连接起来形成一个字符串?

Possible Duplicate:
How do I concatenate multiple C++ strings on one line?

How would I take:

string test1 = "Hello ";
string test2 = "World!";

and concatenate them to make one string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬花如无物 2024-12-13 01:52:42

怎么样

string test3 = test1 + test2;

或者也许

test1.append(test2);

How about

string test3 = test1 + test2;

Or maybe

test1.append(test2);
谜兔 2024-12-13 01:52:42

您可以这样做:

string test3 = test1 + test2;

或者,如果您想添加更多字符串文字,则 :

string test3 = test1 + test2 + " Bye bye World!"; //ok

或者,如果您想在开头添加它,则:

string test3 = "Bye bye World!" + test1 + test2; //ok

You could do this:

string test3 = test1 + test2;

Or if you want to add more string literals, then :

string test3 = test1 + test2 + " Bye bye World!"; //ok

or, if you want to add it in the beginning, then:

string test3 = "Bye bye World!" + test1 + test2; //ok
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文