如何部分专门针对所有类型的派生类模板?(How to partially specialize a

2019-06-23 23:50发布

我想部分专门现有的模板,我不能改变( std::tr1::hash )为基类和所有派生类。 其原因是,我使用多态性好奇经常性的模板图案,散列函数是在CRTP基类来实现。 如果我只想部分专门用于该CRTP基类,那么它很容易,我可以这样写:


namespace std { namespace tr1 {

template <typename Derived>
struct hash<CRTPBase<Derived> >
{
    size_t operator()(const CRTPBase<Derived> & base) const 
    { 
        return base.hash(); 
    }
};

} }

但是,这种专业化不符合实际的派生类中,只有CRTPBase<Derived> 。 我要的是写一个偏特供的方式Derived当且仅当它派生自CRTPBase<Derived> 。 我的伪代码


namespace std { namespace tr1 {

template <typename Derived>
struct hash<typename boost::enable_if<std::tr1::is_base_of<CRTPBase<Derived>, Derived>,
    Derived>::type>
{
    size_t operator()(const CRTPBase<Derived> & base) const 
    { 
        return base.hash(); 
    }
};

} }

......但是,这并不工作,因为编译器不能告诉enable_if<condition, Derived>::typeDerived 。 如果我可以改变std::tr1::hash ,我只是增加一个虚拟模板参数使用boost::enable_if ,所推荐的enable_if文档,但是这显然不是一个很好的解决方案。 有没有解决这个问题的方法吗? 我必须指定每一个自定义模板哈希unordered_setunordered_map创建,或完全专注hash为每一个派生类?

Answer 1:

有下面的代码两种变体。 你可以选择更拨到你。


template <typename Derived>
struct CRTPBase
{
    size_t hash() const {return 0; }
};

// First case 
//
// Help classes
struct DummyF1 {};
struct DummyF2 {};
struct DummyF3 {};
template<typename T> struct X; 

// Main classes
template<> struct X<DummyF1> : CRTPBase< X<DummyF1> > {
    int a1;
};

template<> struct X<DummyF2> : CRTPBase< X<DummyF2> > {
    int b1;
};

// typedefs
typedef X<DummyF1> F1;
typedef X<DummyF2> F2;
typedef DummyF3    F3; // Does not work

namespace std { namespace tr1 {
    template<class T>
    struct hash< X<T> > {
        size_t operator()(const CRTPBase< X<T> > & base) const     
        {         
            return base.hash();     
        }
    };
}} // namespace tr1 // namespace std 

//

// Second case
struct DummyS1 : CRTPBase <DummyS1> {
    int m1;
};
//
template<typename T> 
struct Y : T {};
//
typedef Y<DummyS1> S1;


namespace std { namespace tr1 {
    template<class T>
    struct hash< Y<T> > {
        size_t operator()(const CRTPBase<T> & base) const     
        {         
            return base.hash();     
        }
    };
}} // namespace tr1 // namespace std 

void main1()
{
    using std::tr1::hash;
    F1 f1;
    F2 f2;
    F3 f3;
    hash<F1> hf1; size_t v1 = hf1(f1); // custom hash functor
    hash<F2> hf2; size_t v2 = hf2(f2); // custom hash functor
    hash<F3> hf3; size_t v3 = hf3(f3); // error: standard hash functor

    S1 s1;
    hash<S1> hs1; size_t w1 = hs1(s1); // custom hash functor

}


Answer 2:

而不是修改的std::tr1::hash你应该让你自己的命名空间,并定义有新的结构hash从继承std::tr1::hash或者是专门用于CRTPBase<Derived>


template <typename Derived>
struct CRTPBase
{
    size_t hash() {return 0; }
};

struct AA : CRTPBase <AA> {};
struct BB {};
//
namespace mynamespace {

template <typename Some, typename Dummy=char> 
struct hash : std::tr1::hash<Some> {};
//
template <typename Derived>
struct hash<Derived, 
  typename boost::enable_if< std::tr1::is_base_of<CRTPBase<Derived>, Derived>, char>::type >
{    
    size_t operator()(const CRTPBase<Derived> & base) const     
    {         
        return base.hash();     
    }
};

} // namespace mynamespace {}
//
//
void ff()
{
    using namespace mynamespace;

    hash<AA> aa;  // my hash
    hash<BB> bb;  // std::tr1::hash

}


文章来源: How to partially specialize a class template for all derived types?