gpt4 book ai didi

c++ - 模仿boost lexical_cast操作

转载 作者:行者123 更新时间:2023-11-30 02:03:46 25 4
gpt4 key购买 nike

不幸的是,在我当前的项目中我不能使用 boost,所以我试图模仿 boost::lexical_cast 的行为(减去大部分错误检查 boost )。我有以下有效的功能。

// 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;
}

最佳答案

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)等添加错误检查和特化。

关于c++ - 模仿boost lexical_cast操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11455161/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com