• 締切済み

wstringについて

以下のプログラムを実行すると「Abnormal program termination」となってしまいます。 何故なのでしょうか? どこか間違っているところがあるのでしょうか? #include <iostream> #include <string> int main(void) { std::wstring ws = L"文字列"; std::wcout.imbue(std::locale("japanese")); std::wcout << ws << std::endl; return 0; } 環境はWindowsXP/Borland C++ Compiler 5.5です。 よろしくお願いします。

みんなの回答

  • sho1get
  • ベストアンサー率57% (20/35)
回答No.1

ここのブログサイトにそれらしいことが書いてありましたよ http://rpgincpp.cocolog-nifty.com/blog/

関連するQ&A