如何确定模板专业化是否存在

问题描述 投票:0回答:2

我想检查是否存在某种模板专门化,其中未定义一般情况。

鉴于:

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)?

c++ templates template-specialization sfinae
2个回答
26
投票

利用无法将

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 上观看直播


2
投票

这是一个替代实现,始终使用 @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 > { 静态 const bool 值 = true; }; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~

prog.cc:11:8:注意:“T”

© www.soinside.com 2019 - 2024. All rights reserved.