If I have two classes that are in the same hierarchy with a member of the same name and type, what is the "correct" way to create a member pointer to the base class's variable. Ex.
class A
{
int x;
A():x(1){}
};
class B : public A
{
int x;
B():x(2){}
};
int main(int argc, char *argv[]) {
B classB;
int B::*ptr = &B::x;
int B::*ptr1 = &B::A::x;
int A::*ptr2 = &A::x;
printf("%d,%d,%d\n", classB.*ptr, classB.*ptr1, classB.*ptr2);
return 0;
}
On my compiler (LLVM GCC) this will print 2,1,1 like I would expect it to. This leads me to my two questions.
Are all three of the above implementations "safe" when it comes to the c++ standard?
And If so, Do any mainstream compilers have incompatibilities with either of these?