在以下代码中:
template <typename T>
class CRTP
{
public:
};
template <int I, typename T>
class CRTPInt
{
public:
};
template <template <typename> class T>
class Derived : public T<Derived<T>>
{
public:
};
void main()
{
Derived<CRTP> foo;
Derived<CRTPInt<2>> foo2;
}
如何编写CRPTInt,以便传入一个模板化参数,然后在Derived定义中继续?
谢谢,
吉姆
答案 0 :(得分:4)
CRTP模式通常用于启用静态多态以及 mixin (参数化)行为的能力。为了说明两种选择,首先定义一般模板
很方便template
<
typename Derived
>
class enable_down_cast
{
private:
// typedefs
typedef enable_down_cast Base;
public:
Derived const* self() const
{
// casting "down" the inheritance hierarchy
return static_cast<Derived const*>(this);
}
// write the non-const version in terms of the const version
// Effective C++ 3rd ed., Item 3 (p. 24-25)
Derived* self()
{
return const_cast<Derived*>(static_cast<Base const*>(this)->self());
}
protected:
// disable deletion of Derived* through Base*
// enable deletion of Base* through Derived*
~enable_down_cast() = default; // C++11 only, use ~enable_down_cast() {} in C++98
};
然后为您想要的行为类型定义接口类模板
template<typename FX>
class FooInterface
:
// enable static polymorphism
public enable_down_cast< FX >
{
private:
// dependent name now in scope
using enable_down_cast< FX >::self;
public:
// interface
void foo() { self()->do_foo(); }
protected:
// disable deletion of Derived* through Base*
// enable deletion of Base* through Derived*
~IFooInterface() = default; // C++11 only, use ~IFooInterface() {} in C++98/03
};
要获得此接口的不同实现,只需定义不同的类,每个类从FooInterface
派生自己为奇怪的重复模板参数:
class FooImpl
:
public FooInterface< FooImpl >
{
private:
// implementation
friend class FooInterface< FooImpl > ;
void do_foo() { std::cout << "Foo\n"; }
};
class AnotherFooImpl
:
public FooInterface< AnotherFooImpl >
{
private:
// implementation
friend class FooInterface< AnotherFooImpl >;
void do_foo() { std::cout << "AnotherFoo\n"; }
};
另一种方法是参数化接口的不同实现。这一次,类模板依赖于模板模板参数和非类型参数
template<template<int> class F, int X>
class BarInterface
:
public enable_down_cast< F<X> >
{
private:
// dependent name now in scope
using enable_down_cast< F<X> >::self;
public:
// interface
void bar() { self()->do_bar(); }
protected:
// disable deletion of Derived* through Base*
// enable deletion of Base* through Derived*
~BarInterface() = default; // C++11 only, use ~BarInterface() {} in C++98/03
};
然后实现是另一个类模板,它从自身和非类型参数作为参数的接口派生
template< int X >
class BarImpl
:
public BarInterface< BarImpl, X >
{
private:
// implementation
friend class BarInterface< ::BarImpl, X >;
void do_bar() { std::cout << X << "\n"; }
};
这就是你打电话的方式:
int main()
{
FooImpl f1;
AnotherFooImpl f2;
BarImpl< 1 > b1;
BarImpl< 2 > b2;
f1.foo();
f2.foo();
b1.bar();
b2.bar();
return 0;
}
你问题中的类不太适合这种一般模式。如果您可能想要Derived
某些类似CRTP的行为,那么您可以执行
class Derived1
:
public CRTP< Derived1 >
{
};
template<int I>
class Derived2
:
public CRTPInt< Derived2, I >
{
};
更新:根据https://stackoverflow.com/a/11571808/819272的讨论,我发现原始答案仅在Visual Studio 2010上编译,但在gcc上没有编译,因为某些特定于Microsoft的非便携式特征。例如。 self()
中的enable_down_cast
函数是其派生类中的(模板)相关名称,因此在没有显式using
指令的情况下不可见。此外,我添加了具有适当保护级别的默认析构函数。最后,我将原始类enable_crtp
重命名为enable_down_cast
,因为这正是它的作用:手动启用静态多态性编译器自动为动态多态性做什么。