我想检查某个模板专业化是否存在,其中一般情况没有定义。
鉴于:
template <typename T> struct A; // general definition not defined
template <> struct A<int> {}; // specialization defined for int
我想定义一个像这样的结构:
template <typename T>
struct IsDefined
{
static const bool value = ???; // true if A<T> exist, false if it does not
};
有没有办法做到这一点(理想情况下没有C ++ 11)?
谢谢
使用您无法申请的事实 sizeof
到不完整的类型:
template <class T, std::size_t = sizeof(T)>
std::true_type is_complete_impl(T *);
std::false_type is_complete_impl(...);
template <class T>
using is_complete = decltype(is_complete_impl(std::declval<T*>()));
在Coliru现场观看
这是一个稍微笨重,但正在运行的C ++ 03解决方案:
template <class T>
char is_complete_impl(char (*)[sizeof(T)]);
template <class>
char (&is_complete_impl(...))[2];
template <class T>
struct is_complete {
enum { value = sizeof(is_complete_impl<T>(0)) == sizeof(char) };
};
在Coliru现场观看
这是一个替代实现,总是使用@Quentin使用的相同技巧
C ++ 11版
template<class First, std::size_t>
using first_t = First;
template<class T>
struct is_complete_type: std::false_type {};
template<class T>
struct is_complete_type<first_t<T, sizeof(T)>> : std::true_type {};
关于wandbox的示例
暂定的C ++ 03版本不起作用
template<typename First, std::size_t>
struct first { typedef First type; };
template<typename T>
struct is_complete_type { static const bool value = false; };
template<typename T>
struct is_complete_type< typename first<T, sizeof(T)>::type > { static const bool value = true; };
这种情况下的错误是
prog.cc:11:8:错误:模板参数在部分特化中无法推导:
struct is_complete_type <typename first :: type> {static const bool value = true; };
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~
prog.cc:11:8:注意:'T'