字串 reverse(str.begin(),str.end()) 函式的標頭檔案 以及 str.clear()函式

愛喝可樂不加檸檬水發表於2020-10-07

STL-reverse函式的標頭檔案是 algorithm

另外STL-reverse函式是無返回值的 也就是說

string str1="123";
string str2="654";
string str3=str1+reverse(str2.begi(),str2.end());//報錯

是不被永許的

相關文章