转自:http://blog.csdn.net/Vic___/article/details/9324897
string 转 long
那必须是万年atoi(),不过得配合c_str()使用!
- #include <string>
- #include <iostream>
- #include <stdlib.h>
- using namespace std;
- int main ()
- {
- string a = "1234567890";
- long b = atoi(a.c_str());
- cout<<b<<endl;
- return 0;
- }
注意:atoi()在 stdlib.h
但是,这不是今天的重点!!!更加变态的方法,用String stream
- long stol(string str)
- {
- long result;
- istringstream is(str);
- is >> result;
- return result;
- }
long 转 string
- string ltos(long l)
- {
- ostringstream os;
- os<<l;
- string result;
- istringstream is(os.str());
- is>>result;
- return result;
-
- }
太变态的string流
测试测试所有的基础类型转换
string 转 int
- int stoi(string str)
- {
- int result;
- istringstream is(str);
- is >> result;
- return result;
- }
通过!
string 转float
- float stof(string str)
- {
- float result;
- istringstream is(str);
- is >> result;
- return result;
- }
通过!
string 转double
- double stod(string str)
- {
- double result;
- istringstream is(str);
- is >> result;
- return result;
- }
通过!
int 转 string
- string itos(int i)
- {
- ostringstream os;
- os<<i;
- string result;
- istringstream is(os.str());
- is>>result;
- return result;
-
- }
通过!
float 转 string
- string ftos(float f)
- {
- ostringstream os;
- os<<f;
- string result;
- istringstream is(os.str());
- is>>result;
- return result;
-
- }
通过!
double 转 string
- string dtos(double d)
- {
- ostringstream os;
- os<<d;
- string result;
- istringstream is(os.str());
- is>>result;
- return result;
-
- }
通过!
* 转string
- string *tos(* i)
- {
- ostringstream os;
- os<<i;
- string result;
- istringstream is(os.str());
- is>>result;
- return result;
-
- }
将*换成想要的类型就可以执行 *转string
string 转 *
- * sto*(string str)
- {
- * result;
- istringstream is(str);
- is >> result;
- return result;
- }
将*换成想要的类型就可以执行 string转*
也可以重载函数,达到万能函数转换
记得包含头文件#include <sstream>
总结:使用string 流和标准io流其实本身就是流,一个原理的,不同调用方法。