MFC哪些数据类型可以转换为cstring类型?哪些又是安全数据类型?
展开全部
CString类型中有个成员函数 Format,这个很强大,几乎可转换各种基本类型:
int a;
float b;
double c;
char str[20];
CString cstr;
cstr.Format("%d",a);
cstr.Format("%f",b);
cstr.Format("%lf",c);
cstr.Format("%s",str);
...
int a;
float b;
double c;
char str[20];
CString cstr;
cstr.Format("%d",a);
cstr.Format("%f",b);
cstr.Format("%lf",c);
cstr.Format("%s",str);
...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询