众所周知,本人很菜。
今天我发现了一个东西,以后再也不用去写整数转换字符串的函数了,也不用写字符串转换整数的函数了!!!!
首先,来看看整数转换字符串。
#include <bits/stdc++.h>
using namespace std;
int main()
{
//本人理解:和整数有关的用"<<",和字符串有关的用">>".
stringstream ss;
string s;
int a;
cin>>a;
ss<<a;//ss读取A的值
ss>>s;//ss把A的值给字符串S,他会自动转换好
cout<<s;
return 0;
}
Input
1212
Output
1212
再来看看字符串转整数
#include <bits/stdc++.h>
using namespace std;
int main()
{
//本人理解:和整数有关的用"<<",和字符串有关的用">>".
stringstream ss;
string s;
int a;
cin>>s;
ss<<s;//ss读取s的值
ss>>a;//ss把s的值给整数a,他会自动转换好
cout<<a;
return 0;
}
Input
1212
Output
1212
stringstream还有很多功能,小编还在摸索中……
啥也不是,散会