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.