gpt4 book ai didi

c++ - 如何将 long 转换为 LPCWSTR?

转载 作者:行者123 更新时间:2023-11-30 01:32:31 32 4
gpt4 key购买 nike

如何在 C++ 中将 long 转换为 LPCWSTR?我需要类似于这个的功能:

LPCWSTR ToString(long num) {
wchar_t snum;
swprintf_s( &snum, 8, L"%l", num);
std::wstring wnum = snum;
return wnum.c_str();
}

最佳答案

您的函数名为“to string”,转换为字符串确实比转换为“to LPCWSTR”更容易(也更通用):

template< typename OStreamable >
std::wstring to_string(const OStreamable& obj)
{
std::wostringstream woss;
woss << obj;
if(!woss) throw "dammit!";
return woss.str();
}

如果您的 API 需要 LPCWSTR,您可以使用 std::wstring::c_str():

void c_api_func(LPCWSTR);

void f(long l)
{
const std::wstring& str = to_string(l);
c_api_func(str.c_str());
// or
c_api_func(to_string(l).c_str());
}

关于c++ - 如何将 long 转换为 LPCWSTR?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1572705/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com