string转LPCTSTR
时间: 2024-06-18 15:03:05 浏览: 77
C++类型转换
LPCTSTR是指向字符的指针,而string是一个C++ STL中的字符串类。要将一个string转换为LPCTSTR,可以使用string类中的.c_str()函数将其转换为const char*类型,然后再强制转换为LPCTSTR类型。
下面是一个例子:
```c++
string str = "Hello world!";
LPCTSTR lpStr = (LPCTSTR)str.c_str();
```
阅读全文