MFC编程中怎么把整型数据转换成字符串

2025-03-09 08:37:36
推荐回答(1个)
回答1:

int num=32938;
CString str;
str.Format("%d",num);