home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH14 / A141235.TXT < prev    next >
Encoding:
Text File  |  1993-09-28  |  288 b   |  6 lines

  1. If the virtual function mechanism were in effect, these two calls
  2. would invoke the derived1 definition of f().  Because the
  3. signatures of f() in base1 and derived1 do not match, the virtual
  4. function mechanism is not in effect, and these two calls invoke
  5. the base1 definition of f().
  6.