您可以使用AddString函數將int數轉換為字符串后添加到MFC列表框中。以下是一個示例代碼:
CListBox listBox;
int num = 123;
CString str;
str.Format(_T("%d"), num);
listBox.AddString(str);
在示例中,我們首先定義一個CListBox對象listBox
,然后定義一個整數變量num
并賦值為123。接下來,我們使用CString的Format
函數將整數轉換為字符串,并將字符串使用AddString
函數添加到列表框中。