home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH08 / A08122.TXT < prev    next >
Encoding:
Text File  |  1993-09-15  |  400 b   |  8 lines

  1. A phonebook has a number of entries, and each entry consists of a
  2. name and a telephone number.  The PhoneBk class has been rewritten
  3. to use the "List" container class.  The client code remains
  4. unchanged but the implementation of the PhoneBk class is very
  5. different.  Notice that the two parallel arrays, names[] and
  6. telnum[], of earlier implementations have been replaced with the
  7. class List.
  8.