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

C++模板类不同类型的转换

时间:2017-06-15 18:55:19      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:div   pre   bsp   log   space   static   end   ret   实现   

不同类型之间的转换如果用C语言实现一般会很麻烦,C++提供了一种叫做模版类的东西,使用模板类转换非常方便使用

代码如下:

change.h

 1 #include <iostream>
 2 #include <sstream>
 3 
 4 namespace utils
 5 {
 6     template<class out_type,class in_value>
 7     class CstringTemplate
 8     {
 9     public:
10         virtual ~CstringTemplate(void){}
11         static out_type covert(const in_value &invalue)
12         {
13             stringstream _stream;
14             _stream << invalue;
15             out_type _result;
16             _stream >> _result;
17             return _result;
18         }
19 
20     private:
21         CstringTemplate(void){}
22 
23     };
24 }

具体使用:

main.cpp

 1 #include <iostream>
 2 #include "change.h"
 3 
 4 using namespace std;
 5 using namespace utils;
 6 
 7 int main()
 8 {
 9     string _string = "12345";
10     int a  = CstringTemplate<int,string>::covert(_string);    
11     cout<<a<<endl;
12 
13     return 0;
14 }    

 

C++模板类不同类型的转换

标签:div   pre   bsp   log   space   static   end   ret   实现   

原文地址:http://www.cnblogs.com/LYF-LIUDAO/p/7019305.html

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