string的加法(直接拼接)

#include "stdafx.h" #include<iostream> #include<string> using namespace std; int main() { string str1="abc"; string str2="xyz"; string str3; str3=str1+str2; str1+=str2; cout<<str1<<endl; cout<<
相關文章
相關標籤/搜索