码迷,mamicode.com
首页 > 编程语言 > 详细

C++: string 转 int ;string转float;int 转string;double转char*

时间:2019-12-29 10:51:00      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:ble   int   har   sprint   pre   nbsp   color   string   printf   

1、string转int

std::string str1="700"
 int bid_v1 = atoi(str1.c_str());


2、string转float

std::string str2="6.78"
float bid_p1 = atof(str2.c_str());


3、int 转string

int n =789;
char t[256];
sprintf(t, "%d", n);
string s(t)

 

4、double转char*

char str[255];
sprintf(str, "%f", 10.8); //将10.8转为字符串

C++: string 转 int ;string转float;int 转string;double转char*

标签:ble   int   har   sprint   pre   nbsp   color   string   printf   

原文地址:https://www.cnblogs.com/briskzou/p/12083480.html

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