11

我编写了以下代码来尝试检测类型是否具有静态成员变量。不幸的是,它总是返回该变量不存在。

有人能告诉我哪里出错了吗?我正在使用 g++ 4.7.1。

#include <iostream>
#include <utility>
#include <type_traits>

using namespace std;

template <class T>                                                  
class has_is_baz                                                          
{                                                                   
    template<class U, 
             typename std::enable_if<std::is_same<bool, decltype(U::is_baz)>::value>::type...>                    
        static std::true_type check(int);                           
    template <class>                                                
        static std::false_type check(...);                          
public:                                                             
    static constexpr bool value = decltype(check<T>(0))::value;     
};

struct foo { };

struct bar 
{ 
    static constexpr bool is_baz = true;
};

int main()
{
    cout << has_is_baz<foo>::value << '\n';
    cout << has_is_baz<bar>::value << '\n';
}
4

2 回答 2

11

主要问题是:

std::is_same<bool, decltype(bar::is_baz)>::value == false

然后你的 SFINAE 总是失败。我已经重写了这个has_is_baz特征,它现在可以工作了:

#include <iostream>
#include <utility>
#include <type_traits>

using namespace std;

template <class T>                                                  
class has_is_baz                                                          
{       
    template<class U, class = typename std::enable_if<!std::is_member_pointer<decltype(&U::is_baz)>::value>::type>
        static std::true_type check(int);
    template <class>
        static std::false_type check(...);
public:
    static constexpr bool value = decltype(check<T>(0))::value;
};

struct foo { };

struct bar 
{ 
    static constexpr bool is_baz = true;
};

struct not_static {
    bool is_baz;
};

int main()
{
    cout << has_is_baz<foo>::value << '\n';
    cout << has_is_baz<bar>::value << '\n';
    cout << has_is_baz<not_static>::value << '\n';
}

编辑:我已经修复了类型特征。正如@litb 所指出的,它正在检测静态成员以及非静态成员。

于 2012-08-13T00:55:22.100 回答
5

您的代码中的问题是一个constexpr对象是隐式const的,这意味着您对相同类型的测试应该是:

std::is_same<const bool, decltype(U::is_baz)>::value

这在 §7.1.5 [dcl.constexpr]/9 的标准中有所规定

对象声明中使用的 constexpr 说明符将对象声明为 const。[...]

于 2012-08-13T01:56:18.450 回答