gpt4 book ai didi

c++ - 在虚函数上使用 enable_if

转载 作者:太空狗 更新时间:2023-10-29 20:08:08 27 4
gpt4 key购买 nike

#include <type_traits>

class Base {
public:
virtual bool f() {
return true;
}
};

template<typename T>
class Derived : public Base {
std::enable_if_t< std::is_copy_constructible<T>::value, bool > f() override {
return true;
}

std::enable_if_t< !std::is_copy_constructible<T>::value, bool > f() override {
return false;
}
};

以上代码无法编译。出于某种原因,我没能理解,编译器在 SFINAE 删除一个函数之前将这两个函数视为相同的重载。

然而,我不明白的是我将如何解决这个问题。我找到的文档 state我应该在函数上使用模板。但是,这不起作用,因为该函数本来就是虚拟的。

我尝试通过调用非虚函数来解决问题,但我也无法编译它:

template<typename T>
class Derived : public Base {
virtual bool f() override {
return f_impl();
}

private:
template< std::enable_if_t< std::is_copy_constructible<T>::value > = 0 >
bool f_impl() {
return true;
}

template< std::enable_if_t< !std::is_copy_constructible<T>::value > >
bool f_impl() {
return false;
}
};

int main() {
Derived<int> a;

std::cout<<a.f()<<"\n";
}

编译失败:

so.cpp: In instantiation of ‘class Derived<int>’:
so.cpp:29:18: required from here
so.cpp:18:10: error: ‘std::enable_if<true, void>::type’ {aka ‘void’} is not a valid type for a template non-type parameter

我显然在这里做错了什么,但我想不出什么是正确的方法。

最佳答案

很遗憾,您不能这样做。 SFINAE使用模板;例如以下代码根据您的第二个示例作品进行了修改。

template< typename X = T>
std::enable_if_t< std::is_copy_constructible<X>::value, bool >
f_impl() {
return true;
}

template< typename X = T>
std::enable_if_t< !std::is_copy_constructible<X>::value, bool >
f_impl() {
return false;
}

LIVE

但是virtual 函数不能是模板,仅此而已。

关于c++ - 在虚函数上使用 enable_if,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57345414/

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