vote up 1 vote down star

Using a trick (described by Olivier Langlois), I can determine whether a class has a type defined:

template<typename T> struct hasType
{
    template<typename C> static char test( typename C::Type );
    template<typename C> static char* test(...);
    enum{ Value= sizeof(test<T>(0))==1 };
};

I can also determine whether a class has a variable:

template<typename T> struct hasType
{
    template<typename C> static char test( decltype(C::var) );
    template<typename C> static char* test(...);
    enum{ Value= sizeof(test<T>(0))==1 };
};

However, neither decltype(c::func) nur decltype(c::func()) (which depends on the parameters) works for member functions. Is there a way to do this or will I have to create a functor in every class and detect it with typename C::functor?

Edit: You're both right, but since I'll also have to test for a type I'll use decltype(&C::func) (which should obviously be a pointer).

flag

Good question, but it does seem to be an exact dupe, as ilya.devyatovsky points out below. – Tyler McHenry Aug 25 at 18:13

3 Answers

vote up 0 vote down

MS has a non-standard solution.

link|flag
Doesn't work for me, as I mostly use gcc/icc – tstenner Sep 7 at 15:58
vote up 0 vote down

If this isn't what you need, I don't think you'll find it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.