gpt4 book ai didi

c++ - 模板模板参数的特化

转载 作者:行者123 更新时间:2023-11-30 02:09:13 25 4
gpt4 key购买 nike

这是 earlier question 的续集问题(关于不同的主题) .下面的代码采纳了 Dehstil 关于使用特化的建议。

应该如何专门化具有模板模板参数的函数?

下面的代码(其中两条特化行不编译)使问题具体化。

#include <cassert>

template<typename S> struct PA1 {};
template<typename S> struct PA2 {};
template<typename S> struct PB {};
template<typename S> struct PC {};

template<typename S> struct A1 { typedef PA1<S> P; };
template<typename S> struct A2 { typedef PA2<S> P; };
template<typename S> struct B { typedef PB <S> P; };
template<typename S> struct C { typedef PC <S> P; };

template<typename S, template<typename> class T> char fn(typename T<S>::P);

template<typename S, template<typename> class T> char fn(typename T<S>::P)
{
return 'a';
}

template<typename S> char fn<B<S> >(B<S>::P) { return 'b'; }
template<typename S> char fn<C<S> >(C<S>::P) { return 'c'; }

int main()
{
PA1<int> pa1;
PA2<int> pa2;
PB<int> pb;
PC<int> pc;
assert( (fn<int, A1>(pa1)) == 'a' );
assert( (fn<int, A2>(pa2)) == 'a' );

assert( (fn<int, B>(pb)) == 'b' );
assert( (fn<int, C>(pc)) == 'c' );
}

四个函数调用 fn<...,...>() 在调用时具有相同的签名很重要,因为它们本身将驻留在适用于四个类 A1/A2/B/C 的模板类中.

最佳答案

C++ 标准不允许函数模板的部分特化!

重载你的函数而不是特化它们。

阅读关于Why Not Specialize Function Templates?的解释作者:Herb Sutter

然后阅读为什么重载而不是专门化:Template Specialization and Overloading 作者:Herb Sutter


重载时如何统一调用所有函数

编写一个类模板调用并将它们特化为:

template<class S, template<typename> class T>
struct call
{
static char fn(typename T<S>::P &p)
{
return ::fn<S,T>(p);
}
};

template<class S>
struct call<S,B>
{
static char fn(typename B<S>::P &p)
{
return ::fn<S>(p);
}
};

template<class S>
struct call<S,C>
{
static char fn(typename C<S>::P &p)
{
return ::fn<S>(p);
}
};

然后就可以使用这个类模板来统一调用所有的函数了:

assert( (call<int, A1>::fn(pa1)) == 'a' );
assert( (call<int, A2>::fn(pa2)) == 'a' );

assert( (call<int, B>::fn(pb)) == 'b' );
assert( (call<int, C>::fn(pc)) == 'c' );

查看在线演示:http://www.ideone.com/TISIT

另请注意 ideone.com 完整解决方案中的重载函数模板(以上链接)

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

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