double转lpcstr
时间: 2023-09-12 22:08:03 浏览: 272
C++和C#的类型转换
将double类型的变量转换为LPCTSTR类型的字符串可以使用以下代码:
```
double num = 3.141592;
TCHAR str[64];
_sntprintf_s(str, _countof(str), _T("%f"), num);
LPCTSTR lpcstr = str;
```
其中,_sntprintf_s函数用于将double类型的变量格式化为字符串,并将其存储到字符数组str中。最后,将字符数组str转换为LPCTSTR类型的字符串lpcstr。
阅读全文