##没有躲过的坑--wstring与string的转换
wstring 是指的宽字节。
~~~
typedef basic_string<char> string;
typedef basic_string<wchar_t> wstring;
~~~
在实际工程中,我们往往需要把string转换为wstring,你可以会进行百度或是Google,很轻松找到转换的方法。但是这里就隐含着巨大的坑儿。
看看这个转换吧:
~~~
std::wstring WStringToWString(const std::string& str) {
int size_str = MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, NULL, 0);
wchar_t *wide = new wchar_t[size_str];
MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, wide, size_str);
std::wstring return_wstring(wide);
delete[] wide;
wide = NULL;
return return_wstring;
}
~~~
也许上面的代码帮你解决了问题,但是暂时的。当str = “我是中文”的时候,你会发现,无法完成正确的转换,导致乱码。
因此,为了增加你程序的健壮性,还是寻找另一种方法吧,如下:
~~~
std::wstring StringToWString(const std::string& str)
{
setlocale(LC_ALL, "chs");
const char* point_to_source = str.c_str();
size_t new_size = str.size() + 1;
wchar_t *point_to_destination = new wchar_t[new_size];
wmemset(point_to_destination, 0, new_size);
mbstowcs(point_to_destination, point_to_source, new_size);
std::wstring result = point_to_destination;
delete[]point_to_destination;
setlocale(LC_ALL, "C");
return result;
}
~~~
- 前言
- deprecated关键字
- 指针(内存泄露)
- 头文件相互包含(Compiler error C2653: not a class or namespace name)
- 获取一张图片的width和height
- This function or variable may be unsafe.
- 智能指针陷阱
- wstring与string的转换
- windows下chrome浏览器插件不能安装
- 重定义关键字
- 正确释放vector的内存
- 获取设备环境HDC
- 抽象类不能实例化对象(但是你明明定义的不是抽象类)
- 重载赋值运算符的自我赋值
- 程序中的变量未初始化
- 成对使用new和delete时要采取相同的形式
- 意想不到的除数为零
- map的初始化(插入数据)
- 正则表达式截取字符串
- 捕获窗口之外的鼠标消息(钩子还是??)
- 类中的静态成员变量(static or const static)
- 有if就要有else(一定成对)
- map查找结果处理
- 使用using namespace std的坏习惯
- new一个指针数组、以及创建动态二维数组
- 使用太多的全局变量
- 没有及时break出for循环
- vector使用erase后迭代器变成野指针
- C++函数的默认参数(重新定义默认参数)
- 0xC0000005: 读取位置 xxx时发生访问冲突
- std::string初始化、最快速判断字符串为空
- 你开发的软件安装在C盘Program Files (x86)下产生的异常