gpt4 book ai didi

c++ - 部分类模板特化

转载 作者:搜寻专家 更新时间:2023-10-31 00:39:25 27 4
gpt4 key购买 nike

我想添加一个成员函数,以防我的类的最后一个模板参数被明确设置为某个值。我不明白如何重用以前定义的代码。

我想要编译的简化示例:

template <int A, int B, int C>
struct S
{
void fun() {}
};

template <int A, int B>
struct S<A,B,0>
{
void fun1() {}
};

template <int A>
struct S<A,0,0>
{
void fun2() {}
};

int main()
{
S<0,0,0> s;
s.fun();
s.fun1();
s.fun2();
return 0;
}

我需要用 C++03 编译器找到一个解决方案。

最佳答案

实际上,您的特化是非特化,因为它不特化任何主模板的参数:

template<int A, int B>
struct S<A,B> // ...
// ^^^
// Does not really specialize the primary template,
// no specialized pattern is introduced here

你可以尝试这样重写它:

template<int A> // <== Only the first template parameter of the primary
// template is unconstrained in the pattern we want to
// express (the second template argument shall be 1)
struct S<A,1> : public S<A,0>
// ^^^ ^
// Specializes! Something meaningful should go here,
// but that actually depends on the real
// class templates you are using and their
// semantics
{
void fun1() {}
};

作为替代方案,如果您的目标只是有条件地添加一个成员函数,您可以使用如下所示的 SFINAE 约束而不是专门化:

#include <type_traits> // <== Required for std::enable_if<>

template <class T = void>
// ^^^^
// The function's return type here
typename std::enable_if<B == 1, T>::type
// ^^^^^^
// Your condition for the function's existence
fun1()
{
// ...
}

这是一个live example演示此技术。

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

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