3

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

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>'

(注意,我真的很喜欢这里描述的这个测试的新 C++11 版本,但是 VS2012 还不支持 constexpr。)

4

1 回答 1

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> *);

这为我编译。

于 2012-08-18T20:01:06.067 回答