How to detect whether there is a specific member variable in class? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T16:19:34Z http://stackoverflow.com/feeds/question/1005476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class 5 How to detect whether there is a specific member variable in class? Kirill V. Lyadvinsky 2009-06-17T06:58:38Z 2009-09-06T20:17:51Z <p>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:</p> <pre><code> template&lt;int&gt; struct TT {typedef int type;}; template&lt;class P&gt; bool Check_x(P p, typename TT&lt;sizeof(&P::x)&gt;::type b = 0) { return true; } template&lt;class P&gt; bool Check_x(P p, typename TT&lt;sizeof(&P::X)&gt;::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; } </code></pre> <p>But it does not compile in Visual Studio, while compiling in the GNU C++. With Visual Studio I could use the following template:</p> <pre><code> template&lt;class P&gt; bool Check_x(P p, typename TT&lt;&P::x==&P::x&gt;::type b = 0) { return true; } template&lt;class P&gt; bool Check_x(P p, typename TT&lt;&P::X==&P::X&gt;::type b = 0) { return false; } </code></pre> <p>But it does not compile in GNU C++. Is there universal solution?</p> <p>UPD: Structures P1 and P2 here are only for example. There are could be any classes with unknown members.</p> http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1005563#1005563 1 Answer by Naveen for How to detect whether there is a specific member variable in class? Naveen 2009-06-17T07:20:36Z 2009-06-17T07:20:36Z <p>Why don't you use specialization like this:</p> <pre><code>struct P1 {int x; }; struct P2 {int X; }; template&lt;class P&gt; bool Check_x(P p) { return true; } template&lt;&gt; bool Check_x&lt;P2&gt;(P2 p) { return false; } </code></pre> http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1005575#1005575 0 Answer by Magnus Skog for How to detect whether there is a specific member variable in class? Magnus Skog 2009-06-17T07:22:33Z 2009-06-17T07:42:34Z <p>Why don't you just create template specializations of Check_x ?</p> <pre><code>template&lt;&gt; bool Check_x(P1 p) { return true; } template&lt;&gt; bool Check_x(P2 p) { return false; } </code></pre> <p>Heck, when I think of it. If you only have two types, why do you even need templates for this?</p> http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1005589#1005589 1 Answer by James Hopkin for How to detect whether there is a specific member variable in class? James Hopkin 2009-06-17T07:28:18Z 2009-06-17T07:28:18Z <p>The second answer (litb's) to this shows how to detect a member:</p> <p><a href="http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence">http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence</a></p> http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1006087#1006087 1 Answer by James Hopkin for How to detect whether there is a specific member variable in class? James Hopkin 2009-06-17T09:49:48Z 2009-06-17T10:06:00Z <p>Try this:</p> <pre><code>template&lt;class X, bool=&amp;X::x&gt; struct Check_x_t; template&lt;class P&gt; bool Check_x(P p, Check_x_t&lt;P&gt;* = 0) { return true; } template&lt;class P&gt; 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 } </code></pre> <p>The following link explains why your first solution is failing on certain compilers:</p> <p><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html" rel="nofollow">http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html</a></p> <p>(it fails on Comeau as well as VC).</p> http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1006152#1006152 0 Answer by ppinsider for How to detect whether there is a specific member variable in class? ppinsider 2009-06-17T10:13:20Z 2009-06-17T10:13:20Z <p>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:</p> <p><a href="http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch">http://stackoverflow.com/questions/145814/compile-time-type-based-dispatch</a></p> http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1007175#1007175 4 Answer by Johannes Schaub - litb for How to detect whether there is a specific member variable in class? Johannes Schaub - litb 2009-06-17T13:52:37Z 2009-06-17T13:52:37Z <p>Another way is this one, which relies on <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html" rel="nofollow">SFINAE for expressions</a> too. If the name lookup results in ambiguity, the compiler will reject the template</p> <pre><code>template&lt;typename T&gt; struct HasX { struct Fallback { int x; }; // introduce member name "x" struct Derived : T, Fallback { }; template&lt;typename C, C&gt; struct ChT; template&lt;typename C&gt; static char (&amp;f(ChT&lt;int Fallback::*, &amp;C::x&gt;*))[1]; template&lt;typename C&gt; static char (&amp;f(...))[2]; static bool const value = sizeof(f&lt;Derived&gt;(0)) == 2; }; struct A { int x; }; struct B { int X; }; int main() { std::cout &lt;&lt; HasX&lt;A&gt;::value &lt;&lt; std::endl; // 1 std::cout &lt;&lt; HasX&lt;B&gt;::value &lt;&lt; std::endl; // 0 } </code></pre> <p>It's based on a brilliant idea of someone on usenet. </p>