美文网首页收藏
VC++错误问题解决 - 无法将参数 1 从“const cha

VC++错误问题解决 - 无法将参数 1 从“const cha

作者: ElliotG | 来源:发表于2022-08-30 22:17 被阅读0次

1. 无法将参数 1 从“const char [3]”转换为“const wchar_t *”

解决方案:

1.由于VS默认字符集为UNICODE,可以使用_T("")宏,让程序支持Unicode编码.定义于tchar.h
/* Generic text macros to be used with string literals and character constants.
   Will also allow symbolic constants that resolve to same. */
 
#define _T(x)       __T(x)
#define _TEXT(x)    __T(x)
2.把工程设置多字节集
字符集设置.png

相关文章

网友评论

    本文标题:VC++错误问题解决 - 无法将参数 1 从“const cha

    本文链接:https://www.haomeiwen.com/subject/nphjnrtx.html