我正在尝试向wstring附加一个整数:

TCHAR buffer[MAX_PATH]={0};
GetModuleFileName(NULL, buffer, sizeof(buffer)/sizeof(*buffer));
TCHAR* fileName = PathFindFileName(buffer);
std::wstring name(fileName);

std::wstring temp;
temp = _wgetenv(L"TEMP");
temp.append(L"\\-deploy-temp-");
temp.append(rand()); <-- gives an error; can't convert it to wstring
temp.append(L"\\");
temp.append(name);


先感谢您。

这是我尝试过的:

std::wstring to_wstring(rand());


显然,这应该可以在C ++ 11中使用,但是我有MSVC2010,所以我认为它不能在我的设置中编译。

最佳答案

尝试

#include <iostream>
#include <sstream>
#include <string>

// ...
std::wstring wstr;

std::wstringstream wss;
wss << rand();

wstr.append( wss.str() );

std::wcout << wstr;
//...

关于c++ - 试图附加一个wstring,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15928968/

10-13 06:18