惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
NISL@THU
NISL@THU
E
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
K
Kaspersky official blog
Project Zero
Project Zero
Cisco Talos Blog
Cisco Talos Blog
T
The Exploit Database - CXSecurity.com
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
S
Schneier on Security
G
GRAHAM CLULEY
The Hacker News
The Hacker News
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
AWS News Blog
AWS News Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
爱范儿
爱范儿
P
Privacy International News Feed
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
S
Securelist
G
Google Developers Blog
The Last Watchdog
The Last Watchdog
Google Online Security Blog
Google Online Security Blog
美团技术团队
F
Fortinet All Blogs
小众软件
小众软件
Recorded Future
Recorded Future
V
Visual Studio Blog
B
Blog RSS Feed
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
Latest news
Latest news
Spread Privacy
Spread Privacy
H
Heimdal Security Blog

博客园 - 海天一鸥

Windows批处理中的等待技巧 The Ice::Current Object ICE代理的固有方法 C# Tips 2则 Configuring log4net with VS2010 and .Net 4.0 IoC Container Benchmark - Unity, Windsor, StructureMap and Spring.NET Functional .NET 4.0 – Tuples and Zip binary search of an integer array JAVA 上加密算法的实现用例 Exploring The Major Interfaces in Rx 带状疱疹覆灭记 ADO vs ADO.NET vs OLE DB vs ODBC [数据提供程序之间的差别] 获取SYSTEM账户的环境变量 如何在 Windows 7 中使用多线程加快文件复制? C++ reserve 与 resize的区别 ICE bidirectional connections 关键点 你最后会划掉谁的名字…… Poco::DateTimeFormatter Tips POCO日志组件Tips
关于VC++ 字符集
海天一鸥 · 2011-05-02 · via 博客园 - 海天一鸥

VC程序的国际化不像JAVA,.NET那样支持的极其自然,各种各样的宏及数据类型,常使程序输出莫名其妙乱码,特别是在使用第三方类库时。

下面就我对VC项目字符集问题的一点心得:

1、std::string

它存储的字符取决于当前系统编码,即ANSI编码。例如,对于中文Windows XP/7 等系统,实际的系统编码为936=GB2312.

因此,std:: string  str(“中国”);内存的中的表达即为:D6 D0 B9 FA

此时,不论源文件是什么编码,也不论项目设置中的字符集如何设置,VC++ IDE在读取文件后,自动将读取的字符串转换成ANSI码流存储。这也是为什么上面的字符串输出到控制不会乱码的原因。

image

2、std:: wstring

wstring的实际含义与项目设置(即编译器决定)有关。wstring表示宽字符串。对于宽字符,即wchar_t,是用2个byte表达一个字符。wstring即wchar_t的字符串。而wchar_t表示的是什么字符,与项目设置的字符集有关系。

  • 当项目设置字符集使用Unicode字符集时,wstring存储Unicode-16字符;
  • 当项目设置字符集使用多字节字符集时,wstring使用ANSI字符集(若要编写跨平台代码,不推荐这么应用);

wstring wstr1(L"中国");
wstring wstr2(_T("中国"));

上述字符串都是表示字符串【中国】,是完全一样的。当项目字符集时Unicode时,其内存表达都是2D 4E FD 56.

3、Unicode16==>UTF8

出于通用性及兼容性和性能要求,程序往往需要支持UTF-8.因此程序中需要使用Unicode16==>UTF-8编码转换。而大多数成熟的第三方类库,对UTF-8支持的是比较好的。在windows下编程,可以考虑将项目字符集设置为Unicode,OS层API调用使用Unicode API,调用第三方类库时,将Unicode16转换成UTF-8编码后再执行调用。

另外,出于跨平台和性能方面的考虑,对于log操作,尽可能使用英文。