孫鑫vc++第七課在VS2013裡面寫如下代碼,實作兩個數的相加并且顯示結果:
int num1,num2,num3;
char ch1[10],ch2[10],ch3[10];
GetDlgItem(IDC_EDIT1)->GetWindowText(ch1,10);
GetDlgItem(IDC_EDIT2)->GetWindowText(ch2,10);
num1=atoi(ch1);
num2=atoi(ch2);
num3=num1+num2;
itoa(num3,ch3,10);
GetDlgItem(IDC_EDIT3)->SetWindowText(ch3);
編譯運作出現錯誤:
1>.\TestDlg.cpp(42) : error C2664: “int CWnd::GetWindowTextW(LPTSTR,int) const”: 不能将參數 1 從“char [10]”轉換為“LPTSTR”
1> 與指向的類型無關;轉換要求 reinterpret_cast、C 樣式轉換或函數樣式轉換
1>.\TestDlg.cpp(43) : error C2664: “int CWnd::GetWindowTextW(LPTSTR,int) const”: 不能将參數 1 從“char [10]”轉換為“LPTSTR”
1> 與指向的類型無關;轉換要求 reinterpret_cast、C 樣式轉換或函數樣式轉換
1>.\TestDlg.cpp(53) : error C2664: “CWnd::SetWindowTextW”: 不能将參數 1 從“char [10]”轉換為“LPCTSTR”
1> 與指向的類型無關;轉換要求 reinterpret_cast、C 樣式轉換或函數樣式轉換
原因是字元集的問題。VS2008和VC6.0還是有些不一樣的。
參考資料:http://topic.csdn.net/u/20090506/17/d7e4b312-ba8a-4611-b94b-59c5c7a96aea.html
解決方案:
char 改成TCHAR
atoi 改成 _ttoi
itoa 改成 _itot
TCHAR ch1[10],ch2[10],ch3[10];
GetDlgItem(IDC_EDIT1)->GetWindowText((ch1),10);
GetDlgItem(IDC_EDIT2)->GetWindowText((ch2),10);
num1=_ttoi(ch1);
num2=_ttoi(ch2);
num3=num1+num2;
_itot(num3,ch3,10);
GetDlgItem(IDC_EDIT3)->SetWindowText(ch3);
像上面這樣寫後在VS2013裡還是會報一個安全錯誤
1>c:\users\yc\documents\visual studio 2013\projects\mybole\mybole\testdlg.cpp(80): error C4996: '_itow': This function or variable may be unsafe. Consider using _itow_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1> d:\program files\microsoft visual studio 12.0\vc\include\wchar.h(900) : 參見“_itow”的聲明
因為編譯器認為_itot不安全是以換一個安全的_itot_s
int num1, num2, num3;
TCHAR ch1[10], ch2[10], ch3[10];
GetDlgItem(IDC_EDIT1)->GetWindowTextW(ch1, 10);
GetDlgItem(IDC_EDIT2)->GetWindowTextW(ch2, 10);
num1 = _ttoi(ch1);
num2 = _ttoi(ch2);
num3 = num1 + num2;
_itot_s(num3, ch3, 10);
GetDlgItem(IDC_EDIT3)->SetWindowTextW(ch3);
這樣就可以了

t系列的類型和函數都是雙編譯,Unicode和MBCS的都可以用,最穩妥,是以微軟強烈推薦