判断TCHAR字符串是否有值
时间: 2023-12-13 22:34:15 浏览: 104
判断某字符串是否存在
可以使用_tcslen函数来判断TCHAR字符串是否有值,如果返回值大于0,则说明该字符串有值,否则为空字符串。
以下是一个示例代码:
```c++
#include <tchar.h>
#include <iostream>
int _tmain(int argc, _TCHAR* argv[])
{
TCHAR str[] = _T("Hello World");
if (_tcslen(str) > 0)
{
std::wcout << _T("The string is not empty.") << std::endl;
}
else
{
std::wcout << _T("The string is empty.") << std::endl;
}
return 0;
}
```
阅读全文