目次

C++

since 2011-11-08

文字列ストリーム

sprintf っぽいことをして、最後に C 言語の wchar ポインタがほしい場合の処理:

#include <sstream>
using namespace std;
...
{
   wstringstream s;
   s << L"value " << val;
   OutputDebugString(s.str().c_str());
}