Board logo

標題: 陣列 (三) - 字元陣列與字串 1 [打印本頁]

作者: 鄭繼威    時間: 2022-10-12 03:46     標題: 陣列 (三) - 字元陣列與字串 1

本帖最後由 鄭繼威 於 2022-10-12 21:09 編輯

在C++中,字串可運用字元陣列或字串變數來處理。在利用字元陣列宣告字串的時候要注意它的長度,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個 '\0' 的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,這一點要特別注意。
若為中文字,則每個字要佔兩個字元
char myName[3] = "tw";
char myName[7] = "王小明";

補充:‘\0’ 是 c/c++ 語言中的字符串結束符,在ASCII字符集中對應空字符NULL

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     string str="大家好!我叫王小明!";
  7.     cout<<str<<endl;
  8.     char strc[19]="大家好!我叫王小明!";
  9.     cout<<strc<<endl;  
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 林劭杰    時間: 2022-10-12 21:07

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     string str="大家好!我叫王小明!";
  7.     cout<<str<<endl;
  8.     char strc[19]="大家好!我叫王小明!";
  9.     cout<<strc<<endl;  
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 林劭澧    時間: 2022-10-12 21:07

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     string str="大家好!我叫無名氏!";
  7.     cout<<str<<endl;
  8.     char strc[19]="大家好!我叫無名氏!";
  9.     cout<<strc<<endl;  
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 黃柏青    時間: 2022-10-12 21:07

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){      
  5.     string str="江西簡稱贛!";
  6.     cout<<str<<endl;
  7.     char x[12]="江西簡稱贛!";
  8.     cout<<x<<endl;  
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

作者: 李彣    時間: 2022-10-12 21:09

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     char strc[19]={"大家好!我叫王小明"};
  7.     cout<<strc<<endl;
  8.     system("pause");
  9.     return 0;   
  10. }
複製代碼

作者: 黃裕恩    時間: 2022-10-12 21:11

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     string str="大家好!我叫王小明!";
  7.     cout<<str<<endl;
  8.     char strc[19]="大家好!我叫王小明!";
  9.     cout<<strc<<endl;  
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2