How to detect whether there is a specific member variable in class? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T16:19:34Zhttp://stackoverflow.com/feeds/question/1005476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class5How to detect whether there is a specific member variable in class?Kirill V. Lyadvinsky2009-06-17T06:58:38Z2009-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<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;
}
</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<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; }
</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#10055631Answer by Naveen for How to detect whether there is a specific member variable in class?Naveen2009-06-17T07:20:36Z2009-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<class P>
bool Check_x(P p) { return true; }
template<>
bool Check_x<P2>(P2 p) { return false; }
</code></pre>
http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1005575#10055750Answer by Magnus Skog for How to detect whether there is a specific member variable in class?Magnus Skog2009-06-17T07:22:33Z2009-06-17T07:42:34Z<p>Why don't you just create template specializations of Check_x ?</p>
<pre><code>template<> bool Check_x(P1 p) { return true; }
template<> 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#10055891Answer by James Hopkin for How to detect whether there is a specific member variable in class?James Hopkin2009-06-17T07:28:18Z2009-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#10060871Answer by James Hopkin for How to detect whether there is a specific member variable in class?James Hopkin2009-06-17T09:49:48Z2009-06-17T10:06:00Z<p>Try this:</p>
<pre><code>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
}
</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#10061520Answer by ppinsider for How to detect whether there is a specific member variable in class?ppinsider2009-06-17T10:13:20Z2009-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#10071754Answer by Johannes Schaub - litb for How to detect whether there is a specific member variable in class?Johannes Schaub - litb2009-06-17T13:52:37Z2009-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<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
}
</code></pre>
<p>It's based on a brilliant idea of someone on usenet. </p>