为什么编译器不会选择基于enable_if的特化

时间:2015-06-04 23:03:18

标签: c++ c++11 template-specialization enable-if

我想为某些类的类专门化,例如基于std :: is_arithmetic。虽然编译器没有“看到”基于“enable_if”的专业化并选择了原理/主模板。你能帮帮我吗... 下面是使用g ++ 4.8

编译后的代码片段和输出
#include < iostream >  
#include < type_traits >  
#include < string >  

template < typename T1, typename T2 = void >  
struct TestT  
{  
    static const bool is_int = false;  
    static const bool is_str = false;  
};

template < typename T>  
struct TestT < T,  
       std::enable_if< std::is_arithmetic<t>::value, T >::type >  
{  
    static const bool is_int = true;  
    static const bool is_str = false;  
};  

template < typename T>
struct TestT < std::string, T >  
{  
    static const bool is_int = false;  
    static const bool is_str = true;  
};  

class enum TestE  
{  
    Last  
};

int main(int argc, char* argv[])  
{
    std::cout << "Enum is_int: " << TestT<TestE>::is_int  
              << ", is_str: " << TestT<TestE>::is_str << std::endl;  
    std::cout << "string is_int: " << TestT<std::string>::is_int  
              << ", is_str: " << TestT<std::string>::is_str << std::endl;  
    std::cout << "int is_int: " << TestT<int>::is_int  
              << ", is_str: " << TestT<int>::is_str << std::endl;  
    return 0;
}  

以上输出为:

  

Enum is_int: 0, is_str: 0 //预期为   string is_int: 0, is_str: 1 //预计为   int is_int: 0, is_str: 0 //不期望

我真的很感激你的帮助,并提前感谢你

1 个答案:

答案 0 :(得分:2)

您需要保留第二个参数(::type别名的类型)未指定或void,以便它与主模板的默认参数匹配:

struct TestT<T,  
       std::enable_if<std::is_arithmetic<T>::value>::type> 

typename声明之前您还需要std::enable_if,或者使用std::enable_if_t(并忽略::type):

struct TestT<T, std::enable_if_t<std::is_arithmetic<T>::value>>

第二个专业化也是如此:

template<>
struct TestT<std::string>  
{  
    static const bool is_int = false;  
    static const bool is_str = true;  
};

最后,在此专业化中,is_int应设为true

template<typename T>  
struct TestT<T, std::enable_if_t<std::is_arithmetic<T>::value>>  
{  
    static const bool is_int = true;  
    static const bool is_str = false;  
};

Live Demo

更好的版本可能是保留一个专门化并使用std::is_same来测试int和一个类型特征来测试字符串:

template<class T>struct is_string:std::false_type{};
template<>struct is_string<std::string>:std::true_type{};
template<std::size_t N>struct is_string<char const(&)[N]>:std::true_type{};
template<>struct is_string<char const*>:std::true_type{};
template<>struct is_string<char const*const>:std::true_type{};
template<>struct is_string<char const*volatile>:std::true_type{};
// on and on...

template<typename T>  
struct TestT  
{  
    static const bool is_int = std::is_same<T, int>();  
    static const bool is_str = is_string<T>();  
};