home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH05 / A05171.TXT < prev    next >
Encoding:
Text File  |  1993-11-17  |  456 b   |  9 lines

  1. An object of a class is an instance of its class.  The 
  2. declaration of a class object is much like that of an object 
  3. of built-in type. The type of the object is the class.  Here are 
  4. the declarations of three class objects and of one integer.  
  5. Notice that the keyword class is used only in the declaration of 
  6. "storm".  The keyword class is required when another object with 
  7. the same identifier as the classname is also in the enclosing 
  8. scope.
  9.