关于某个类型转字符串和字符串转换某种类型的简单实现(用字符串流)

关于某个类型转字符串和字符串转换某种类型的简单实现(用字符串流)

template < typename T >
T from_string(
const  std:: string   & s)
{
    std::istringstream 
is (s);
    T type;
    
is   >>  type;
    
return  t;
}

template
< typename T >
std::
string  to_string( const  T  & type)
{
    std::ostringstream s;
    s 
<<  type;
    
return  s.str();
}

直接用字符串流方便的处理了各种内嵌类型


做个标记,回家了

你可能感兴趣的:(关于某个类型转字符串和字符串转换某种类型的简单实现(用字符串流))