如何将 long 转换为 LPCWSTR?
Posted
技术标签:
【中文标题】如何将 long 转换为 LPCWSTR?【英文标题】:How to convert long to LPCWSTR? 【发布时间】:2009-10-15 14:26:28 【问题描述】:如何在 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();
【问题讨论】:
【参考方案1】:您的函数被命名为“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();
如果你有一个需要LPCWSTR
的API,你可以使用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());
【讨论】:
【参考方案2】:该函数不起作用,因为 wnum.c_str() 指向在函数返回时销毁 wnum 时释放的内存。
您需要在返回之前获取字符串的副本,即
return wcsdup(wnum.c_str());
然后当你使用完结果后你需要释放它,即
LPCWSTR str = ToString(123);
// use it
free(str);
【讨论】:
以上是关于如何将 long 转换为 LPCWSTR?的主要内容,如果未能解决你的问题,请参考以下文章
如何将 CStringW 转换为 LPCWSTR? [复制]
error C2664: “CreateFileW”: 不能将参数 1 从“char *”转换为“LPCWSTR”
将字符串转换为 LPCWSTR 以用于 CreateFile() 以寻址串行端口
求助:error C2664: “CreateWindowExW”: 不能将参数 3 从“const char [8]”转换为“LPCWSTR”