我想检查某个模板专业化是否存在,其中一般情况没有定义。
假设:
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)?
由于
答案 0 :(得分:16)
使用您无法将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*>()));
这是一个有点笨重但有效的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) };
};
答案 1 :(得分:0)
这是一个替代实现,总是使用相同的技巧@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 {};
暂定的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&lt; typename first :: type&gt; {static const bool value = true; }; ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~
prog.cc:11:8:注意:'T'