码迷,mamicode.com
首页 > 编程语言 > 详细

C++中TCHR转string

时间:2016-03-11 17:04:59      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

一般C++标准库中的string不支持宽字节,也就是unicode字符集。

所以要想将TCHAR或wchar转换成string,则需调用系统函数WideCharToMultiByte

int len = WideCharToMultiByte(CP_ACP, 0, *s, -1, NULL, 0, NULL, NULL);
char *new_str = new char[len * sizeof(char)]; WideCharToMultiByte(CP_ACP, 0, *s, -1, new_str, len, NULL, NULL);
string s(new_str);

反之,要想将多字节转换为unicode,则需使用相反的函数即可MultiByteToWideChar

若工程的字符集为unicode,则可以使用标准库的宽字符版,即名字前加w,例如wstring,wcout,wcin

C++中TCHR转string

标签:

原文地址:http://www.cnblogs.com/macher/p/5266257.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!