string 与 int double 的转化
Posted narjaja
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string 与 int double 的转化相关的知识,希望对你有一定的参考价值。
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
//string -> int float double
string str = "088.123";
cout << "string -> int float double" << endl;
cout << atoi(str.c_str()) << endl;
cout << atol(str.c_str()) << endl;
cout << atof(str.c_str()) << endl;
int a;
float b;
double c;
istringstream iss(str);
iss >> a >> b >> c;
cout << a << " " << b << " " << c << endl;
//int double float -> string
a = 10;
b = 10.123;
c = 100.234;
cout << "int double float -> string" << endl;
cout << to_string(a) << " " << to_string(b) << " " << to_string(c) << endl;
stringstream ss;
ss << a << " " << b << " " << c;
cout << ss.str() << endl;
return 0;
以上是关于string 与 int double 的转化的主要内容,如果未能解决你的问题,请参考以下文章
如何避免 Gson 将 JsonString 中的 int long 等数字转化为带小数的 Double
java中,怎么讲一个double型数字,转化为一个String字符串?