4

可能重复:
是否可以编写 C++ 模板来检查函数是否存在?

这与我之前的问题非常相似。我想检查模板参数是否包含成员函数。

我尝试了类似于上一个问题中接受的答案中的代码。

struct A
{
   int member_func();
};

struct B
{
};

template<typename T>
struct has_member_func
{
   template<typename C> static char func(???); //what should I put in place of '???'
   template<typename C> static int func(...);

   enum{val = sizeof(func<T>(0)) == 1};
};

int main()
{
    std::cout<< has_member_func<B>::val; //should output 0
    std::cout<< has_member_func<A>::val; //should output 1
}

但我不知道我应该用什么来代替???它来让它工作。我是 SFINAE 概念的新手。

4

1 回答 1

1

Is it possible to write a C++ template to check for a functions?

template<typename T>
class has_member_func
{
        typedef char no;
        typedef char yes[2];
        template<class C> static yes& test(char (*)[sizeof(&C::member_func)]);
        template<class C> static no& test(...);
public:
        enum{value = sizeof(test<T>(0)) == sizeof(yes&)};
};
于 2010-12-04T16:25:32.257 回答