home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH09 / A09103.TXT < prev    next >
Encoding:
Text File  |  1993-11-25  |  412 b   |  8 lines

  1. In order to distinguish among overloaded functions with the same
  2. name, the compiler appends the argument types to the function
  3. name. For this reason the compiler cannot distinguish between two
  4. overloaded functions that have the same name and the same number
  5. and type of arguments.  In this example, each declaration of
  6. Print() differs by at least one of:  the type, the order, or
  7. the number of arguments.
  8.