gpt4 book ai didi

c++ - std::enable_if 的两个版本有什么区别

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:03:06 27 4
gpt4 key购买 nike

我不明白为什么第一个()版本的代码可以编译,而第二个版本却不能

我已阅读 this , this , this ,当然还有 this但我仍然不明白为什么它编译了一个版本,而另一个版本却没有。如果有人可以解释一下(比如完全假人),我将不胜感激。

版本

template <typename As, typename std::enable_if<
std::is_arithmetic<As>::value, As>::type* = nullptr >
As getStringAs(const std::string& arg_name)
{
std::istringstream istr(arg_name);
As val;
istr >> val;
if (istr.fail())
throw std::invalid_argument(arg_name);
return val;
}

错误版本

template <typename As, typename std::enable_if_t<
std::is_arithmetic<As>::value, As> = 0 >
As getStringAs(const std::string& arg_name)
{
std::istringstream istr(arg_name);
As val;
istr >> val;
if (istr.fail())
throw std::invalid_argument(arg_name);
return val;
}

预期用途:

int main()
{
return getStringAs<float>("2.f");
}

非常感谢!

最佳答案

std::enable_if_t<std::is_arithmetic<As>::value, As>替代As假设条件为真。发出错误的原因是因为您不能拥有浮点类型的非类型模板参数。在这种情况下,除了 SFINAE 之外,您似乎没有出于任何原因使用模板参数,因此您可以替换第二个 Asint它应该编译。

std::enable_if_t<std::is_arithmetic<As>::value, int> = 0

关于c++ - std::enable_if 的两个版本有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55858489/

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