假设我生成一个Casts
命名空间,它将包含许多强制转换函数:
namespace Casts
{
// To string
bool Cast(bool bValue, string& res);
bool Cast(int intValue, string& res);
bool Cast(float floatValue, string& res);
bool Cast(const wstring& str, string& res);
// From string
bool Cast(const string& strVal, bool& res);
bool Cast(const string& strVal, int& res);
bool Cast(const string& strVal, long& res);
bool Cast(const string& strVal, float& res);
// And lots of other casting functions of different types
}
我非常喜欢boost:lexical_cast方法。例如:
bool Cast(int intValue, string& res)
{
bool bRes = true;
try { res = lexical_cast<string>(intValue); }
catch(bad_lexical_cast &) { bRes = false; }
return bRes;
}
我的问题是,还有其他任何可能的方法以优雅,统一和稳健的方式实现Casts
。对我来说,理想的方法是采用原生轻量级方法。
答案 0 :(得分:6)
是的,您基本上可以执行boost::lexical_cast
内部执行的操作:使用流。您可以将许多功能合并到一些功能模板中:
namespace Casts
{
template <class From>
bool Cast(From val, string &res)
{
std::ostringstream s;
if (s << val) {
res = s.str();
return true;
} else {
return false;
}
}
template <class To>
bool Cast(const string &val, To &res)
{
std::istringstream s(val);
return (s >> res);
}
}
您可能需要为wstring
版本提供特定的重载(在其中使用widen
),但这是关于它的。