通过stringstream实现常用的类型转换实例代码

时间:2022-09-27 09:43:58

其他类型转成string

?
1
2
3
4
5
6
7
8
9
10
template <class T>
void toString(string& result,const T &t)
{
  //将各种数值转换成字符串
  ostringstream oss;
  oss.clear();
  oss << t;
  result.clear();
  result = oss.str();
}

string转成其他类型

?
1
2
3
4
5
6
7
8
template <class T>
void stringToOther(T &t, const string &s)
{
  stringstream ss;
  ss.clear();
  ss << s;
  ss >> t;
}

类型之间的相互转换

?
1
2
3
4
5
6
7
8
template <class inputType,class outputType>
void toConvert(const inputType &input, outputType &output){
 
  stringstream ss;
  ss.clear();
  ss << input;
  ss >> output;
}

完整代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <sstream>
#include <iostream>
#include <string>
using namespace std;
 
template <class T>
void toString(string& result,const T& t);
template <class T>
void stringToOther(T &t, const string &s);
template <class inputType,class outputType>
void toConvert(const inputType &input, outputType &output);
 
int main(int argc, char** argv)
{
  string s1;
  double a =1.1111;
  toString(s1,a);
  cout<<s1<<endl;
  double b = 0;
  double &bptr =b;
  stringToOther(bptr,s1);
  cout<<bptr<<endl;
 
  string s2 ="2.222";
  double c1 =0;
  double &c1ptr = c1;
  toConvert(s2,c1ptr);
  cout<<c1ptr<<endl;
 
  return 0;
}
 
template <class T>
void toString(string& result,const T &t)
{
  //将各种数值转换成字符串
  ostringstream oss;
  oss.clear();
  oss << t;
  result.clear();
  result = oss.str();
}
 
template <class T>
void stringToOther(T &t, const string &s)
{
  stringstream ss;
  ss.clear();
  ss << s;
  ss >> t;
}
 
template <class inputType,class outputType>
void toConvert(const inputType &input, outputType &output){
 
  stringstream ss;
  ss.clear();
  ss << input;
  ss >> output;
}

到此这篇关于通过stringstream实现常用的类型转换实例代码的文章就介绍到这了,更多相关stringstream实现常用的类型转换内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://www.cnblogs.com/cyssmile/p/12790946.html