Path: utzoo!mnetor!uunet!husc6!rutgers!bellcore!faline!thumper!ulysses!andante!alice!ark From: ark@alice.UUCP Newsgroups: comp.lang.c++ Subject: Re: member functions Message-ID: <7832@alice.UUCP> Date: 26 Apr 88 15:17:07 GMT References: <13200001@bucc2> Organization: AT&T Bell Laboratories, Liberty Corner NJ Lines: 13 In article <13200001@bucc2>, brian@bucc2.UUCP writes: > In C++, are pointers to the member functions stored with an object??? No. > Or are function pointers stored only for virtual member functions? Each object that contains one or more virtual functions has a single pointer to a ``virtual function table'' that corresponds to the class of that object. The table has one entry for each virtual function member of that class. Multiple objects can share the same table.