vote up 5 vote down star
3

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.

flag

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 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 at 13:26
1  
+1: Interesting challenge :-) – James Hopkin Jun 17 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/… . Sorry for making this comment twice, but i feel it belongs under the main post. – rmn Sep 15 at 18:18

6 Answers

vote up 4 vote down check

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|flag
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 at 14:45
+1: Got it now! – James Hopkin Jun 17 at 15:01
@litb: Do you have a link to the Usenet discussion? – James Hopkin Jun 17 at 15:06
yeah, hold your breath: groups.google.com/group/comp.lang.c++.moderated/… (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 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/… Interesting read. – rmn Sep 11 at 12:50
show 13 more comments
vote up 1 vote down

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|flag
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 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 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 at 8:31
vote up 0 vote down

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|flag
There are more than only two types. Look at my comment to Naveen answer. – Kirill V. Lyadvinsky Jun 17 at 8:34
vote up 1 vote down

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|flag
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 at 8:23
vote up 1 vote down

Try this:

template<class X, bool=&X::x> struct Check_x_t;

template<class P> bool Check_x(P p, Check_x_t<P>* = 0) { return true; }
template<class P> bool Check_x(P p, ...) { return false; }

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

void test()
{
  P1 p1; P2 p2;

  Check_x(p1); // returns true
  Check_x(p2); // returns false
}

The following link explains why your first solution is failing on certain compilers:

http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html

(it fails on Comeau as well as VC).

link|flag
+1 brilliant... – Naveen Jun 17 at 10:15
It does not compile in GNU C++ too. That is very similar to my variant with &P::x==&P::x. Besides my second variant does not require additional structures Check_x_t. – Kirill V. Lyadvinsky Jun 17 at 10:23
It compiles on gcc4.3.3. Are you able to upgrade? (My solution has the small advantage of being valid C++ ;-)) – James Hopkin Jun 17 at 10:32
(using &P::x == &P::x is invalid, because non-integral operations are not allowed in constant expressions) – James Hopkin Jun 17 at 10:35
1  
You have to pass a second argument. As it is now, if there is a member, the call would be ambiguous. If you pass another argument, overload resolution will figure out that the conversion to "..." will be worse, and call the other function. And, because no boolean conversions happen, a deduction failure always happens, because it would require an invalid conversion of a template argument expression (to bool) - whether or not the member actually exist isn't relevant here. – Johannes Schaub - litb Jun 17 at 12:59
show 9 more comments
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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