gpt4 book ai didi

c++ - 如何有条件地实例化具有多个模板参数的模板类?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:29:41 24 4
gpt4 key购买 nike

我已经关注了这篇文章:Class template SFINAE有条件地实例化模板类。

这对于只有一个模板参数的类非常有效,如上面的链接所示。

但是,我有两个(模板)参数,我想做一些 SFINE 检查。以下是我的代码的一个最小示例。

#include <type_traits>
#include <string>

template<class T, class U, class R> using arithmetic_types = std::enable_if_t<
std::is_arithmetic_v<T> &&
std::is_arithmetic_v<U>,
R
>;

template<class T, class U, class Enable = void> class MyClass;
template<class T, class U, arithmetic_types<T, U, void>>
class MyClass {
public:
MyClass() = default;
};

int main()
{
MyClass<int, int> o; // should work
MyClass<int, double> o1; // should work
MyClass<int, std::string> o2; // should be a complier error
return 0;
}

上面给了我错误信息:https://godbolt.org/z/BEWJMp

error C3855: 'MyClass': template parameter 'Enable' is incompatible with the declaration
error C2079: 'o' uses undefined class 'MyClass'
error C2079: 'o1' uses undefined class 'MyClass'
error C2079: 'o2' uses undefined class 'MyClass'

很遗憾,我无法理解错误信息(error C3855:)。

为什么我不能对更多的模板参数做上面链接中显示的相同原理

什么是最好的解决方案

最佳答案

问题出在 MyClass 的模板特化中。特化应该只在 TU 这两个类上进行参数化,测试应该放在声明中,如下例所示。

#include <string>
#include <type_traits>

template <class T, class U, class R>
using arithmetic_types = std::enable_if_t<
std::is_arithmetic_v<T> && std::is_arithmetic_v<U>, R>;

template <class T, class U, class Enable = void>
class MyClass;

template <class T, class U> //<- Remove the test from here
class MyClass<T, U, arithmetic_types<T, U, void>> //<- Put the test here.
{
public:
MyClass() = default;
};

int main()
{
MyClass<int, int> o; // should work
MyClass<int, double> o1; // should work
MyClass<int, std::string> o2; // should be a complier error
return 0;
}

演示:https://godbolt.org/z/xTnwo9

关于c++ - 如何有条件地实例化具有多个模板参数的模板类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55965406/

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