home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH12 / A12163.TXT < prev    next >
Encoding:
Text File  |  1993-11-23  |  390 b   |  7 lines

  1. Suppose that there is more than one function definition with the
  2. same number of arguments as the function call.  To decide which
  3. function to call, the C++ compiler looks at the types of the
  4. arguments in each of these function definitions.  It selects the
  5. definition that most closely matches the call.  The process that
  6. makes this selection is called the argument matching algorithm.
  7.