如何连接两个字符串?
可能的重复:
如何在一行上连接多个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
怎么样
或者也许
How about
Or maybe
您可以这样做:
或者,如果您想添加更多字符串文字,则 :
或者,如果您想在开头添加它,则:
You could do this:
Or if you want to add more string literals, then :
or, if you want to add it in the beginning, then: