gpt4 book ai didi

c++ - 模板特化和 enable_if 问题

转载 作者:IT老高 更新时间:2023-10-28 22:26:45 28 4
gpt4 key购买 nike

我遇到了关于 enable_if 和模板特化的适当使用的问题。

修改示例后(出于保密原因),这是一个可比较的示例:

I have function called "less" that checks if 1st arg is less than 2nd arg. Let's say I want to have 2 different kinds of implementations depending on the type of input - 1 implementation for integer and another for double.

我目前的代码是这样的 -

#include <type_traits>
#include <iostream>

template <class T,
class = typename std::enable_if<std::is_floating_point<T>::value>::type>
bool less(T a, T b) {
// ....
}

template <class T,
class = typename std::enable_if<std::is_integral<T>::value>::type>
bool less(T a, T b) {
// ....
}

int main() {
float a;
float b;
less(a,b);
return 0;
}

上面的代码无法编译,因为 - 它说我正在重新定义 less 方法。

错误是:

Z.cpp:15:19: error: template parameter redefines default argument
class = typename std::enable_if<std::is_integral<T>::value>::type>

^
Z.cpp:9:19: note: previous default template argument defined here
class = typename std::enable_if<std::is_floating_point<T>::value>::type>
^

Z.cpp:16:11: error: redefinition of 'less'
bool less(T a, T b) {
^

Z.cpp:10:11: note: previous definition is here
bool less(T a, T b) {
^

Z.cpp:23:5: error: no matching function for call to 'less'
less(a,b);
^~~~

Z.cpp:15:43: note: candidate template ignored: disabled by 'enable_if'
[with T = float]
class = typename std::enable_if<std::is_integral<T>::value>::type>
^
3 errors generated.

谁能指出这里的错误是什么?

最佳答案

默认模板参数不是函数模板签名的一部分。因此,在您的示例中,您有两个相同的 less 重载,这是非法的。 clang 提示默认参数的重新定义(根据 §14.1/12 [temp.param] 这也是非法的),而 gcc 产生以下错误消息:

error: redefinition of 'template<class T, class> bool less(T, T)'

要修复错误,请移动 enable_if从默认参数到虚拟模板参数的表达式

template <class T,
typename std::enable_if<std::is_floating_point<T>::value, int>::type* = nullptr>
bool less(T a, T b) {
// ....
}

template <class T,
typename std::enable_if<std::is_integral<T>::value, int>::type* = nullptr>
bool less(T a, T b) {
// ....
}

另一种选择是使用 enable_if在返回类型中,虽然我觉得这更难阅读。

template <class T>
typename std::enable_if<std::is_floating_point<T>::value, bool>::type
less(T a, T b) {
// ....
}

template <class T>
typename std::enable_if<std::is_integral<T>::value, bool>::type
less(T a, T b) {
// ....
}

关于c++ - 模板特化和 enable_if 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29502052/

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