码迷,mamicode.com
首页 > 其他好文 > 详细

转换为CString

时间:2019-07-24 13:05:20      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:数字类型   log   blank   col   tar   int   border   ++   target   

CString a, b, c;
c = a + b;

 

使用Format方法方便的实现int、float和double等数字类型转换为CString字符串。

%c 单个字符
%d 十进制整数(int)
%ld 十进制整数(long)
%f 十进制浮点数(float)
%lf 十进制浮点数(double)
%o 八进制数
%s 字符串
%u 无符号十进制数
%x 十六进制数

int s = 123;  

CString str;

str.Format(_T("%d"), s);

CString str;

 

double num=1.46;

//str="1.46"

str.Format(_T("%lf"),num);

 

【转载自】

CString与double互相转化 - BeanGo的博客 - CSDN博客 https://blog.csdn.net/BeanGo/article/details/91042909

c++ MFC int 转换成 CString - imxiangzi的专栏 - CSDN博客 https://blog.csdn.net/imxiangzi/article/details/37969353

转换为CString

标签:数字类型   log   blank   col   tar   int   border   ++   target   

原文地址:https://www.cnblogs.com/wxl845235800/p/11237158.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!