1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
CString Str1; CString Str2; CString Str3; int x,y,z; GetDlgItemText(IDC_EDIT1,Str1); GetDlgItemText(IDC_EDIT2,Str2); x = atoi(Str1.GetBuffer(Str1.GetLength())); y = atoi(Str2.GetBuffer(Str2.GetLength())); z = x + y; itoa(z,Str3.LockBuffer(),10); GetDlgItem(IDC_EDIT3)->SetWindowText(Str3); |
转载请注明:exchen's blog » CString 类型与 int 类型互转