void CTestDialog::OnBnClickedBtnAdd(){ // TODO: 在此添加控件通知處理程序代碼 int num1 = 0; int num2 = 0; int num3 = 0; WCHAR ch1[10] = { }; WCHAR ch2[10] = { }; WCHAR ch3[10] = { }; GetDlgItem(IDC_EDIT1)->GetWindowText(ch1,10); GetDlgItem(IDC_EDIT1)->GetWindowText(ch2,10); num1 = atoi((const char*)ch1); num2 = atoi((const char*)ch2); num3 = num1 + num2; _itoa_s(num3, (char*)ch3, 10,10); GetDlgItem(IDC_EDIT3)->SetWindowText(ch3);}
1 回答

30秒到達(dá)戰(zhàn)場
TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超6個(gè)贊
atoi是將ASCII碼字符轉(zhuǎn)整數(shù)的,你的寬字符數(shù)組會出錯(cuò)
- 1 回答
- 0 關(guān)注
- 77 瀏覽
添加回答
舉報(bào)
0/150
提交
取消