如何转换string到其他类型?如何从其他类型转换到string?
代码1:toString
template
{
std::ostringstream ost;
ost << a;
return ost.str();
}
代码2:fromString
template
{
std::istringstream is(s);
T t;
is >> t;
return t;
}
使用方法:
int d = fromString
string str=toString(d);
参考:
http://www.thescripts.com/forum/thread62219.html
发表回复