VC中怎么在一串字符串中输出一个变量的值

2024年11月27日 22:32
有2个网友回答
网友(1):

用format呀,给个例子:

CString str;
str.format("hello %d",100);

这样str的值就是 hello 100

网友(2):

使用CString::Left(int)
CString:Rigth(int)来操作