不幸的是,在我目前的项目中,我无法使用boost,所以我试图模仿boost::lexical_cast
的行为(减去大多数错误检查提升)。我有以下功能,可以使用。
// Convert a string to a primitive, works
// (Shamelessly taken from another stack overflow post)
template <typename T>
T string_utility::lexical_cast(const string &in)
{
stringstream out(in);
T result;
if ((out >> result).fail() || !(out >> std::ws).eof())
{
throw std::bad_cast();
}
return result;
}
// Convert a primitive to a string
// Works, not quite the syntax I want
template <typename T>
string string_utility::lexical_cast(const T in)
{
stringstream out;
out << in;
string result;
if ((out >> result).fail())
{
throw std::bad_cast();
}
return result;
}
我希望能够使用相同的语法来保持一致性,但我无法弄明白。
将字符串转换为基元很好。
int i = lexical_cast<int>("123");
然而,另一方面看起来像这样:
string foo = lexical_cast(123);
// What I want
// string foo = lexical_cast<string>(123);
编辑:感谢ecatmur 我不得不切换模板参数,但以下完全符合我的要求。
template<typename Out, typename In> Out lexical_cast(In input)
{
stringstream ss;
ss << input;
Out r;
if ((ss >> r).fail() || !(ss >> std::ws).eof())
{
throw std::bad_cast();
}
return r;
}
答案 0 :(得分:4)
lexical_cast
的基本模板代码为:
template<typename In, typename Out> Out lexical_cast(In in) {
stringstream ss;
ss << in;
if (ss.fail()) throw bad_cast();
ss >> out;
return out;
}
根据需要为(In == string)等添加错误检查和特化。