C++ CHAR數組轉化爲STRING

 有不少種方法:c++ 假設c字符串定義爲char ch[]="hello world!"; 1.向構造函數傳入c字符串建立string對象: string str(ch); 2.使用拷貝構造函數建立string對象: string str = ch; 3.對已有的string對象調用string類內部定義的賦值運算符: string str; str = ch;    前兩種相似,但和第三種有較
相關文章
相關標籤/搜索