string,wstring,cout,wcout 与中文字符的输入输出 .

来源:互联网 发布:知我者,二三子 编辑:程序博客网 时间:2024/05/02 00:32

转自:http://blog.csdn.net/efeics/article/details/8044014

 

c++中,可以直接利用string及cout进行中文的存储及输出:


#include <iostream>   
  1. #include <string>   
  2. using namespace std;  
  3.   
  4. void main()  
  5. {  
  6.     string s1="第一";  
  7.     cout<<s1<<endl;   
  8. }  

正常输出:

第一

但是有些时候不得不用到wstring来存储中文字符,这时输出需要

  • 导入locale头文件
  • 中文字符前需要加L,并用wstring存储
  • 输出前更改本地语言,wcout.imbue(locale("chs"))
  • 用wcout输出
  1. #include <iostream>   
  2. #include <string>   
  3. #include <locale>   
  4. using namespace std;  
  5.   
  6. void main()  
  7. {  
  8.     string s1="第一";  
  9.     wstring s2=L"第二";  
  10.     cout<<s1<<endl;  
  11.     wcout.imbue(locale("chs"));  
  12.     wcout<<s2<<endl;  
  13. }  

结果便是:

第一

第二

 

 

个人看法:

wstring 返回“第二”的size为2.

 如果是string,返回的size为4.

不知道还有木有其他区别?

 

 

原创粉丝点击