简体   繁体   中英

what is the cleanest way to concat a const char * with a string in c++?

我知道我可以使用stringstream但是我希望有一种更简单的方式来编写"hello" + a_std_string_object

If you have an old/broken compiler it might require

string("hello") + std_string_object

but in modern compilers the natural code

"hello" + std_string_object

should work.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM