代码见图,使用atoi后,把字符数组的12转换为1,不知道以上错误是什么,来大神分析下。

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);}




蛊毒传说
浏览 55回答 1
1回答

30秒到达战场

atoi是将ASCII码字符转整数的,你的宽字符数组会出错
打开App,查看更多内容
随时随地看视频慕课网APP