The following is a paragraph from Bruce Eckel's Thinking in C++ (volume 1, 2nd edition, chapter 11) under the heading "Pointers to members":
…a pointer needs an address, but there is no "address" inside the class; selecting the member of class means offsetting into that class. You cannot produce an actual address untill you combine that offset with the starting address of particular object. The syntax of pointer to member require you select an object at the same time you're dereferencing the pointer to member.
What does this quote mean? I am trying to do something like:
&(objectname.member_variable)
I get an actual address, something like 0x22f14
, but this offset means how far it is from the starting address?
I think that
&(foo.bar)
is just a regular pointer to a variable. By saying "pointer to member" we mean something like&(FooClass::bar)
, without specyfying any objects! Note, this value may be actually computed at compile-time and may be used e.g. in templates.Member pointers have really weird syntax.
Try running the following code:
You will get the output:
As you can see, both values hold an offset of the member from the beginning of the class. They can be computed, even if you don't know on which object you are working.
But if you want to dereference them, you have to provide an object - that's what the
.*
operator does.