int,float数据类型转string
Posted guo-xin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了int,float数据类型转string相关的知识,希望对你有一定的参考价值。
方便学习,编程使用
int 转string
int infor2 = (int)readdata[i];//int数据
CString info2;
info2.Format(_T("%d"), infor2);
float 转string
float num = (float)readdata[i];//float数据
ostringstream num_float;
string str(num_float.str());
两种方法类似,可根据实际情况选择方法,对于double类同理。
以上是关于int,float数据类型转string的主要内容,如果未能解决你的问题,请参考以下文章