我有一个展示WideString的到控制台的问题。 我在生成C ++和C ++一般全新的。 不知道如果我需要一些头或可能在调试的时候可以帮助显示的值。 似乎这样做时
wcout << s;
它显示的地址,而不是“WCHAR阵列”。
这是我的代码:
//---------------------------------------------------------------------------
#include <iostream.h>
#include <vcl.h>
#include <string>
#include <wstring.h>
#pragma hdrstop
//---------------------------------------------------------------------------
#pragma argsused
int main(int argc, char* argv[])
{
int a;
WideString s;
string str;
cout << "Enter a: ";
cin >> a;
//to read the return
cin.get();
cout << "Enter str: ";
cin >> str;
//to read the return
cin.get();
cout << "\n";
s = L"HELLO";
wcout << s;
cout << "\n\n";
wcout << L"BYE";
cout << "\n\nPress any key to continue...";
cin.get();
return 0;
}
//---------------------------------------------------------------------------
这是输出:
Enter a: 4
Enter str: potato
2fb0b4
BYE
Press any key to continue...