c++ int转lpwstr
时间: 2023-02-19 18:10:48 浏览: 251
C++中char*转换为LPCWSTR的解决方案
将int转换为lpwstr,可以使用以下代码实现:
```
#include <windows.h>
#include <tchar.h>
#include <iostream>
int main()
{
int number = 123;
WCHAR str[10];
_itow_s(number, str, 10, 10);
std::wcout << str << std::endl;
return 0;
}
```
在这段代码中,我们使用了_itow_s函数将int转换为lpwstr。该函数的第一个参数是要转换的整数,第二个参数是指向目标字符串的指针,第三个参数是目标字符串的最大长度,第四个参数是要使用的基数。
阅读全文