私は非常に簡単なことをしています。ユーザーに文字入力を求め、その文字を文字列に保存しようとしています。次に、その文字列全体を出力します。
プログラムは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;
}