c++ 中 UINT 和 LPCWSTR 之间的转换

发布于 2024-12-23 06:18:39 字数 67 浏览 1 评论 0 原文

如何获取 UINT 类型变量的字符串表示形式(如 LPCWSTR)?

How can I get the string representation (as LPCWSTR) of a variable of type UINT?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

香草可樂 2024-12-30 06:18:39

LPCWSTR 是一个常量LPWSTR,它是一个指向宽字符字符串的指针。您应该使用 std::wstringstream

#include <sstream>

// ...

UINT number = 42;
std::wstringstream wss;
std::wstring str;

wss << number;
wss >> str;
LPCWSTR result = str.c_str();

A LPCWSTR is a constant LPWSTR, which is a pointer to a wide-character string. You should use a std::wstringstream:

#include <sstream>

// ...

UINT number = 42;
std::wstringstream wss;
std::wstring str;

wss << number;
wss >> str;
LPCWSTR result = str.c_str();
以为你会在 2024-12-30 06:18:39

尝试_itow。它需要一个无符号整数、宽字符缓冲区的地址以及用于转换的基数。

这是一个例子:

UINT x = 1000245; 
LPWSTR y = (LPWSTR)malloc(30); 

_itow(x, y, 10); 

Try _itow. It takes an unsigned integer, the address of a wide character buffer and what base to use for the conversion.

Here's an example:

UINT x = 1000245; 
LPWSTR y = (LPWSTR)malloc(30); 

_itow(x, y, 10); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文