c – 如何正确使用MultiByteToWideChar
作者:互联网
我正在使用MultiByteToWideChar将我的字符串转换为wstring.我首先尝试获得我的wstring所需的大小.根据文档传递0作为最后一个参数应该完成这个.使用MultiByteToWideChar(CP_UTF8,MB_COMPOSITE,str.c_str(), – 1,nullptr,0);返回0作为wstring缓冲区的必需大小.我已经验证str也是非空字符串.我在这做错了什么?
解决方法:
For UTF-8 or code page 54936 (GB18030, starting with Windows Vista), dwFlags must be set to either 0 or MB_ERR_INVALID_CHARS. Otherwise, the function fails with ERROR_INVALID_FLAGS.
您正在使用CP_UTF8但也传递MB_COMPOSITE标志,这就是它失败的原因.
标签:multibyte-functions,msdn,c,windows,wstring 来源: https://codeday.me/bug/20190830/1769381.html