📅  最后修改于: 2022-03-11 14:44:53.143000             🧑  作者: Mango
#include
#include
std::string text = "hello";
std::string moretext = "there";
std::string together = text + moretext;
std::cout << together << std::endl;
>> hello there