gpt4 book ai didi

c++ - 错误 C2446 : == : no conversion from const char * to TCHAR *

转载 作者:可可西里 更新时间:2023-11-01 09:40:02 25 4
gpt4 key购买 nike

我在下面定义了一个 TCHAR:

 TCHAR szProcessName[MAX_PATH] = TEXT("<unknown>");

我想比较如下:

if(szProcessName == "NDSClient.exe")
{
}

但是我得到了错误:

error C2446: == : no conversion from const char * to TCHAR *
error C2440: '==' : cannot convert from 'const char [14]' to 'TCHAR [260]'

最佳答案

"NDSClient.exe" 是 Windows 上的 const char* 字符串。如果你想让它成为一个 const TCHAR* 那么你需要使用 TEXT 宏。此外,您不能使用 == 使用等效的 TCHAR 函数(例如 _tcscmp)比较字符串。

关于c++ - 错误 C2446 : == : no conversion from const char * to TCHAR *,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4201893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com