数、字符、字符串的各种转换方法

数、字符、字符串的各种转换方法

// 第一种方法,使用sprintf系列函数
swprintf(buf,L " the char is %d " ,integer);
sprintf(buf,
" the char is %d " ,integer);
// 第二种方法
CString str;
str.Format(
" 5+3=%d " , 99 );
MessageBox(str);

(先写几种,以后慢慢积累补充)

你可能感兴趣的:(数、字符、字符串的各种转换方法)