我对enable_if和has_member做错了什么?

时间:2012-08-18 19:56:37

标签: c++ templates template-meta-programming enable-if

我想我已经盯着这个太长时间了,但我在这里找不到我的错误:

struct
{
    bool empty() const
    {
       return true;
    }
} hasEmpty;

template<typename T>
struct has_empty
{
private:
    template<typename U, U>
    class check {};

    template<typename C>
    static char f(check<void (C::*)() const, &C::empty> *);

    template<typename C>
    static long f(...);

public:
    static const bool value = (sizeof(f<T>(nullptr)) == sizeof(char));
};

template<typename T>
typename std::enable_if<has_empty<T>::value>::type foo(const T& t)
{

}

void x()
{
    foo(hasEmpty);
}

Visual Studio 2012报告:

error C2893: Failed to specialize function template 'std::enable_if<has_empty<T>::value>::type foo(const T &)'
1>          With the following template arguments:
1>          '<unnamed-type-hasEmpty>'

(注意,我真的就像here描述的这个测试的新C ++ 11版本一样,但是VS2012还不支持constexpr。)

1 个答案:

答案 0 :(得分:3)

您的hasEmpty::empty方法返回bool

struct 
{
    bool empty() const
    {
       return true;
    }
} hasEmpty;

但是你的特性使用一个返回void的成员函数指针,该替换总是会失败。你应该改变这个:

template<typename C>
ctatic char f(check<void (C::*)() const, &C::empty> *);

为此:

template<typename C>
static char f(check<bool (C::*)() const, &C::empty> *);

那为我编译。