最佳答案
我需要像这样连接两个常量字符:
const char *one = "Hello ";
const char *two = "World";
我该怎么做呢?
我从一个具有 C 接口的第三方库传递了这些 char*
,因此我不能简单地使用 std::string
代替它们。