码迷,mamicode.com
首页 > 其他好文 > 详细

模板函数:将string类型变量转换为常用的数值类型和常用的数值类型转String

时间:2018-05-31 13:20:03      阅读:383      评论:0      收藏:0      [点我收藏+]

标签:变量   class   inf   函数   pen   turn   TE   模板   bsp   


template <class Type>
Type stringToNum(const string str) {
    istringstream iss(str);
    Type num;
    iss >> num;
    return num;
}
template<typename T> string toString(const T& t) {
    ostringstream oss;  //创建一个格式化输出流
    oss << t;             //把值传递如流中
    return oss.str();
}

 

___________________________________________________________________________________________________________________________

技术分享图片

 

 

技术分享图片

 

模板函数:将string类型变量转换为常用的数值类型和常用的数值类型转String

标签:变量   class   inf   函数   pen   turn   TE   模板   bsp   

原文地址:https://www.cnblogs.com/TheKat/p/9116135.html

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