通过stringstream实现常用的类型转换实例代码
其他类型转成string
templatevoidtoString(string&result,constT&t) { //将各种数值转换成字符串 ostringstreamoss; oss.clear(); oss< string转成其他类型
templatevoidstringToOther(T&t,conststring&s) { stringstreamss; ss.clear(); ss< >t; }类型之间的相互转换
templatevoidtoConvert(constinputType&input,outputType&output){ stringstreamss; ss.clear(); ss<>output; } 完整代码
#include#include #include usingnamespacestd; template voidtoString(string&result,constT&t); template voidstringToOther(T&t,conststring&s); template voidtoConvert(constinputType&input,outputType&output); intmain(intargc,char**argv) { strings1; doublea=1.1111; toString(s1,a); cout< voidtoString(string&result,constT&t) { //将各种数值转换成字符串 ostringstreamoss; oss.clear(); oss< voidstringToOther(T&t,conststring&s) { stringstreamss; ss.clear(); ss< >t; } templatevoidtoConvert(constinputType&input,outputType&output){ stringstreamss; ss.clear(); ss<>output; } 到此这篇关于通过stringstream实现常用的类型转换实例代码的文章就介绍到这了,更多相关stringstream实现常用的类型转换内容请搜索毛票票以前的文章或继续浏览下面的相关文章希望大家以后多多支持毛票票!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。