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

  1. As with nonmember template functions, template arguments are not
  2. part of the signature of member template functions.  Template
  3. arguments are part of the name of a template class.  Therefore,
  4. these arguments only appear in a member function definition if the
  5. function is defined outside the class template.  In this example,
  6. the template argument "T" is part of the class name but not part
  7. of the function name.
  8.