我有一些非常简单的事情要做,我试图提示用户输入字符并将该字符保存到字符串中。然后我打印整个字符串。
该程序适用于 Windows,但我希望该程序适用于 ASCII 和 Unicode,这就是我使用 TCHAR 和 wstring 的原因。
我的问题:我无法将字符(用户输入的)添加到 wstring 上。它只是不会存储在该变量中。为什么?
我的简单代码:
#include <windows.h>
#include <tchar.h>
#include <conio.h>
#include <stdio.h>
#include <string>
#include <iostream>
using namespace std;
int main()
{
// I am using wstring for unicode compatibility but in Windows(MSDN) is there a general
// string variable? You know how there is char, wchar & then TCHAR(which is a general variable
// for both ASCII & unicode). Is there a TSTRING or something?
wstring chStr = L"abc";
TCHAR ch = L'a';
while ( ch != '!' )
{
printf("Enter a character: ");
ch = getch();
chStr += ch; // the string never takes on a char it always remains as "a"
printf("\nThe characters entered so far are: %s \n", chStr.c_str());
}
system("PAUSE");
return 0;
}