我想我已经盯着这个太长时间了,但我在这里找不到我的错误:
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。)
答案 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> *);
那为我编译。