我有一个专门用于处理某种类型参数的类。有什么方法可以强制模板参数是指向某种类型的子类的指针?
答案 0 :(得分:8)
#include <type_traits>
#include <utility>
struct B { };
struct D : B { };
template <typename T>
struct S {
typedef typename std::enable_if<std::is_base_of<B, T>::value>::type check;
};
int main()
{
S<B> x; // Ok!
S<D> y; // Ok!
S<int> z; // Not ok!
}
enable_if
实用程序和is_base_of
类型特征是C ++ 0x标准库的一部分,但也可以在Boost中使用。