up vote 12 down vote favorite
14
share [g+] share [fb]

For creating algorithm template function I need to know whether x or X (and y or Y) in class that is template argument. It may by useful when using my function for MFC CPoint class or GDI+ PointF class or some others. All of them use different x in them. My solution could be reduces to the following code:


template<int> struct TT {typedef int type;};
template<class P> bool Check_x(P p, typename TT<sizeof(&P::x)>::type b = 0) { return true; }
template<class P> bool Check_x(P p, typename TT<sizeof(&P::X)>::type b = 0) { return false; }

struct P1 {int x; };
struct P2 {float X; };
// it also could be struct P3 {unknown_type X; };

int main()
{
    P1 p1 = {1};
    P2 p2 = {1};

    Check_x(p1); // must return true
    Check_x(p2); // must return false

    return 0;
}

But it does not compile in Visual Studio, while compiling in the GNU C++. With Visual Studio I could use the following template:


template<class P> bool Check_x(P p, typename TT<&P::x==&P::x>::type b = 0) { return true; }
template<class P> bool Check_x(P p, typename TT<&P::X==&P::X>::type b = 0) { return false; }

But it does not compile in GNU C++. Is there universal solution?

UPD: Structures P1 and P2 here are only for example. There are could be any classes with unknown members.

link|improve this question

I don't believe the second way is standard (integral constant expressions may not use op== with operands involving op&). But the first way looks right. What does msvc++ say about it? – Johannes Schaub - litb Jun 17 '09 at 13:09
@litb: Take a look at the link at the end of my answer - I think that explains the problem (both why compilers reject it, and whether it's really allowed by the C++98 Standard). – James Hopkin Jun 17 '09 at 13:26
1  
+1: Interesting challenge :-) – James Hopkin Jun 17 '09 at 14:31
I've written a thorough explanation of the correct code to solve this problem, and it is available here: cpptalk.wordpress.com/2009/09/12/… . Sorry for making this comment twice, but i feel it belongs under the main post. – rmn Sep 15 '09 at 18:18
feedback

protected by Kirill V. Lyadvinsky Jun 13 '11 at 9:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

7 Answers

up vote 14 down vote accepted

Another way is this one, which relies on SFINAE for expressions too. If the name lookup results in ambiguity, the compiler will reject the template

template<typename T> struct HasX { 
    struct Fallback { int x; }; // introduce member name "x"
    struct Derived : T, Fallback { };

    template<typename C, C> struct ChT; 

    template<typename C> static char (&f(ChT<int Fallback::*, &C::x>*))[1]; 
    template<typename C> static char (&f(...))[2]; 

    static bool const value = sizeof(f<Derived>(0)) == 2;
}; 

struct A { int x; };
struct B { int X; };

int main() { 
    std::cout << HasX<A>::value << std::endl; // 1
    std::cout << HasX<B>::value << std::endl; // 0
}

It's based on a brilliant idea of someone on usenet.

link|improve this answer
At first I did not understand the idea. That is exactly what I needed. This solution works both in MSVC++ 2008 and g++4.2.4. – Kirill V. Lyadvinsky Jun 17 '09 at 14:45
@litb: Do you have a link to the Usenet discussion? – James Hopkin Jun 17 '09 at 15:06
1  
yeah, hold your breath: groups.google.com/group/comp.lang.c++.moderated/tree/browse_frm/… (linked from the SO thread you link too by one guy). No worries if you don't get immediately what that guy's code does. It's very clever and took me quite a while too – Johannes Schaub - litb Jun 17 '09 at 15:10
1  
I added a post on my blog about this, hope you guys don't mind :) at cpptalk.wordpress.com/2009/09/11/… Interesting read. – rmn Sep 11 '09 at 12:50
1  
now a full explanation of this code is pubished.. at: cpptalk.wordpress.com/2009/09/12/… litb, you are more than welcome to verify i got it correctly :) – rmn Sep 12 '09 at 0:30
show 12 more comments
feedback

Why don't you use specialization like this:

struct P1 {int x; };
struct P2 {int X; };

template<class P> 
bool Check_x(P p) { return true; }

template<> 
bool Check_x<P2>(P2 p) { return false; }
link|improve this answer
Because I don't know actually that struct P2 contains big X and P1 contains small x. These structs here just for example. There are could be any stucts or classes. – Kirill V. Lyadvinsky Jun 17 '09 at 7:24
Then I don't see any way to recongnize it using templates (may be I am wrong). If the datatypes of x was different in P1 & P2 then may be we could have used sizeof to return true or false. – Naveen Jun 17 '09 at 7:33
In my question there is the way (actually there are two different ways). But I don't know how to recognize it in both compilers. – Kirill V. Lyadvinsky Jun 17 '09 at 8:31
feedback

The second answer (litb's) to this shows how to detect a member:

http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence

link|improve this answer
Your answer is no applicable to my question because of I don't know type of x(or X) member. It could be int or float or anything else (including user types with defined operations +-*/). – Kirill V. Lyadvinsky Jun 17 '09 at 8:23
feedback

Boost.ConceptTraits provides between others some macros to define type traits, as for example BOOST_TT_EXT_DEFINE_HAS_MEMBER(name), which defines a type trait of the form:

has_member_##name<T>

This gives true if T has a member type named . Note, however, that this won't detect reference type members.

In you case it will be enough to add in a header file

BOOST_TT_EXT_DEFINE_HAS_MEMBER_TYPE(x)

and check as follows

BOOST_STATIC_ASSERT(has_member_x<P1>::value);

The technique used is the same as the one explained on some of the preceding answers.

Unfortunately this library is no more maintained. Now that C++0x will not includes concept, this library together with SFINAE is a perfect replacement to work with most of the concepts.

link|improve this answer
Concept Traits is no more maintained because while that function evolved into these two ones: boost.org/doc/libs/1_42_0/libs/mpl/doc/refmanual/… other functions went into Concepts_checks, for instance: boost.org/doc/libs/1_42_0/libs/concept_check/… – Blaisorblade May 1 '10 at 19:24
You are right. has_xxx is already in Boost and respond to the question. I don't agree for the second link as archetypes and concepts check are the two sides of the same coin. – Vicente Botet Escriba May 2 '10 at 7:53
feedback

Long answer is below, but here's a snippet of how the code below ends up being used:

//Multiple inheritance forces ambiguity of member names.
//SFINAE is used to make aliases to member names.
//Expression SFINAE is used to write just one has_member
//that can accept any alias we pass it.
has_member<alias_x<ambiguate<A, var_x>>, alias_x<var_x>>::value;

I know this is an old question, but I thought I'd throw in another answer. Cobbled this together from various has_memberXYZ solutions I've seen here on SO (including the answer I accepted on this question) and on the web. It uses plain SFINAE and expression SFINAE. I wanted to be able to have just a single has_member meta function that could accept the name of a member I want to check for, along with the class to check.

Effectively, what this code does is set up an alias to the member. In the alias, we create a member with a common name which all aliases will use, and make it dependent on the type of the actual member we're checking for. Here, SFINAE dictates whether that member will exist in the resulting alias. Then has_member is set up to check for the common alias member name using expression SFINAE. There's also a static_assert in there that I think should eliminate the scenario I describe in the question I link to above, where the member name being checked is specified in multiple places and has the potential for typos (the "member does not exist at all" case).

has_member and helpers:

//template <typename... Args> struct ambiguate : public Args... {};

//non-variadic ambiuate
template <typename A, typename B> struct ambiguate : public A, public B {};

template<typename A>
struct got_type : std::true_type {};

template<typename AmbiguousMember, typename Member>
struct has_member {
    template<typename C> static char ((&f(decltype(&C::value))))[1];
    template<typename C> static char ((&f(...)))[2];

    //Make sure the member name is consistently spelled the same.
    static_assert(
        (sizeof(f<Member>(0)) == 1)
        , "Member name being checked is different from member name specified in alias."
    );

    static bool const value = sizeof(f<AmbiguousMember>(0)) == 2;
};

Code that user of has_member will need to set up. I wanted this to be a minimal amount of code to be reproduced for each member name being checked:

//Want to test for an x member and then a y member...

struct Member_x { int x; };

template<typename T, typename = std::true_type>
struct AliasTo_x;

template<typename T>
struct AliasTo_x<
    T, std::integral_constant<bool, got_type<decltype(&T::x)>::value>
> { static const decltype(&T::x) value; };

struct Member_y { int yy; }; //Somebody fat-fingered the member name.

template<typename T, typename = std::true_type>
struct AliasTo_y;

template<typename T>
struct AliasTo_y<
    T, std::integral_constant<bool, got_type<decltype(&T::y)>::value>
> { static const decltype(&T::y) value; };

Usage:

//Pretend these classes are not under our control,
//and have unknown member innards.
struct ClassA { char x; };
struct ClassB { string y; };
struct ClassC { private: float x(int); }; //Seems to work...

int main() {
    bool AHasMember_x = has_member<
        AliasTo_x<ambiguate<ClassA, Member_x>>, AliasTo_x<Member_x>
    >::value; //true

    bool BHasMember_x = has_member<
        AliasTo_x<ambiguate<ClassB, Member_x>>, AliasTo_x<Member_x>
    >::value; //false

    bool BHasMember_y = has_member<
        AliasTo_y<ambiguate<ClassB, Member_y>>, AliasTo_y<Member_y>
    >::value; //triggers static_assert about member name consistency.

    bool CHasMember_x = has_member<
        AliasTo_x<ambiguate<ClassC, Member_x>>, AliasTo_x<Member_x>
    >::value;
    //true... Seems like it should be false since this is a private x()
    //Don't know enough of the c++ specs to know why this seems to work.
}

I didn't do extensive testing by any means, so I'd be interested in any caveats with this method, ways to shrink the amount of code the user has to write to alias the member name, or other possible improvements.

link|improve this answer
Variadic templates are not valid in the current C++ Standard. – Kirill V. Lyadvinsky Jun 13 '11 at 9:04
Sorry, didn't realize this was for current C++ only. I added a non-variadic ambiguate, but of course that doesn't take care of the decltype's sprinkled through. – pheedbaq Jun 13 '11 at 12:27
feedback

Why don't you just create template specializations of Check_x ?

template<> bool Check_x(P1 p) { return true; }
template<> bool Check_x(P2 p) { return false; }

Heck, when I think of it. If you only have two types, why do you even need templates for this?

link|improve this answer
There are more than only two types. Look at my comment to Naveen answer. – Kirill V. Lyadvinsky Jun 17 '09 at 8:34
feedback

Are the functions (x, X, y, Y) from an abstract base class, or could they be refactored to be so? If so you can use the SUPERSUBCLASS() macro from Modern C++ Design, along with ideas from the answer to this question:

http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch

link|improve this answer
feedback

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