📜  c++代码示例中的字符串插值

📅  最后修改于: 2022-03-11 14:44:53.383000             🧑  作者: Mango

代码示例1
#include  #include  using namespace std; int main () { //Declare three variables str1, str2, str3 string str1 = "Hello"; string str2 = "World"; string str3; int len ; // copy str1 into str3 str3 = str1; // concatenates str1 and str2 str3 = str1 + str2; return 0; }