Since pointers to members do not affect the size of an object ,they must be computed at the run time only,right?So why use them??In a SO post,it was answered in terms of callbacks;could someone clearly explain it?Also,where are they stored? Also,why is their a Special provision for this,i could just create a pointer member and do the initialization in the constructor as well?

link|improve this question

70% accept rate
Ummmmmmm, what? – Jim Buck Nov 28 '11 at 7:50
Uhm, is your question about member functions? – Paul Manta Nov 28 '11 at 7:53
i felt there should be some significance as to how we access a pointer to a member using the object name if it does not affect the size.. – nikel Nov 28 '11 at 10:07
feedback

closed as not a real question by Brian Roach, Pratik, BlueRaja - Danny Pflughoeft, MSalters, FredOverflow Nov 28 '11 at 8:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

Take a look at this link: http://www.codeproject.com/KB/cpp/FastDelegate.aspx

Among other things, it talks about how pointers to member functions are implemented in various compilers.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.