程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++中英文字符串基本概念解析

C++中英文字符串基本概念解析

編輯:C++入門知識

C++編程語言中的字符串應用在實際編程中是一個比較基礎的應用技術。 我們在學習這門語言的時候,需要對這方面的知識有一個充分的掌握。在這裡我們就一起來了解一下C++中英文字符串的表示方法。

在C++中英文字符串類的string的模板原型是basic_string

  1. template < class _Elem, class traits = char_traits< _Elem>, 
    class _Ax = allocator< _Elem>> 
  2. class basic_string{}; 

第一個參數_Elem表示類型。第二個參數traits的缺省值使用char_traits類型,定義了類型和字符操作的函數,如比較、等價、分配等。第三個參數_Ax的默認值是allocator類,表示了內存模式,不同的內存結構將操作指針的不同行為,例如棧、堆或段內存模式等。

在C++標准裡定義了兩個字符串string和wstring

  1. typedef basic_string< char> string;  
  2. typedef basic_string< wchar_t> wstring; 

前者string是常用類型,可以看作char[],其實這正是與string定義中的_Elem=char相一致。而wstring,使用的是wchar_t類型,這是寬字符,用於滿足非ASCII字符的要求,例如Unicode編碼,中文,日文,韓文什麼的。對於wchar_t類型,實際上C++中都用與char函數相對應的wchar_t的函數,因為他們都是從同一個模板類似於上面的方式定義的。因此也有wcout, wcin, werr等函數。

實際上string也可以使用中文,但是它將一個漢字寫在2個char中。而如果將一個漢字看作一個單位wchar_t的話,那麼在wstring中就只占用一個單元,其它的非英文文字和編碼也是如此。這樣才真正的滿足字符串操作的要求,尤其是國際化等工作。

看一下下面的程序,就會理解C++中英文字符串之間的差別。

  1. #include < iostream> 
  2. #include < string> 
  3. using namespace std;  
  4. #define tab "\t"  
  5. int main()  
  6. {  
  7. locale def;  
  8. cout< < def.name()< < endl;  
  9. locale current = cout.getloc();  
  10. cout< < current.name()< < endl;  
  11. float val=1234.56;  
  12. cout< < val< < endl;  
  13. //chage to french/france  
  14. cout.imbue(locale("chs"));  
  15. current=cout.getloc();  
  16. cout< < current.name()< < endl;  
  17. cout< < val< < endl;  
  18. //上面是說明locale的用法,下面才是本例的內容,因為其中用到了imbue函數  
  19. cout< < "*********************************"< < endl;  
  20. //為了保證本地化輸出文字/時間/貨幣等),
    chs表示中國,wcout必須使用本地化解析編碼  
  21. wcout.imbue(std::locale("chs"));  
  22. //string 英文,正確顛倒位置,顯示第二個字符正確  
  23. string str1("ABCabc");  
  24. string str11(str1.rbegin(),str1.rend());  
  25. cout< < "UK\ts1\t:"< < str1< < tab< < str1[1]< < 
    tab< < str11< < endl;  
  26. //wstring 英文,正確顛倒位置,顯示第二個字符正確  
  27. wstring str2=L"ABCabc";  
  28. wstring str22(str2.rbegin(),str2.rend());  
  29. wcout< < "UK\tws4\t:"< < str2< < tab< < str2[1]
    < < tab< < str22< < endl;  
  30. //string 中文,顛倒後,變成亂碼,第二個字符讀取也錯誤  
  31. string str3("你好麼?");  
  32. string str33(str3.rbegin(),str3.rend());  
  33. cout< < "CHN\ts3\t:"< < str3< < tab< < str3[1]
    < < tab< < str33< < endl;  
  34. //正確的打印第二個字符的方法  
  35. cout< < "CHN\ts3\t:RIGHT\t"< < str3[2]< < str3[3]< < endl;  
  36. //中文,正確顛倒位置,顯示第二個字符正確  
  37. wstring str4=L"你好麼?";  
  38. wstring str44(str4.rbegin(),str4.rend());  
  39. wcout< < "CHN\tws4\t:"< < str4< < tab< < str4[1]

    < < tab< < str44< < endl;  
  40. wstring str5(str1.begin(),str1.end());
    //只有char類型的string時才可以如此構造  
  41. wstring str55(str5.rbegin(),str5.rend());  
  42. wcout< < "CHN\tws5\t:"< < str5< < tab< < 
    str5[1]< < tab< < str55< < endl;  
  43. wstring str6(str3.begin(),str3.end());//如此構造將失敗!!!!  
  44. wstring str66(str6.rbegin(),str6.rend());  
  45. wcout< < "CHN\tws6\t:"< < str6< < tab< < 
    str6[1]< < tab< < str66< < endl;  
  46. return 0;  

以上就是我們對C++中英文字符串的相關介紹。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved