我正在尝试使用此代码。
short int R = 128
CString str;
str.Format(_T("Test %d",R));
SetDlgItemText(EDIT,str);
但是,我在Edit Control获得的输出是
Test 1955401504
Short int R转换不正确。你知道如何处理这个问题吗?
答案 0 :(得分:2)
您关闭)
:
str.Format(_T("Test %d",R));
在错误的地方。
试试这个:
str.Format(_T("Test %d"),R);