精选优质文档-倾情为你奉上Chapter 7 Objects and Classes1.See the section Defining Classes for Objects.2.Define the initializer, create data fields, and define methods.3.Use a constructor4.The name of the initializer is _init_.5.The self refers to the object itself. Through self, the members of the object can be accessed.6.The syntax for constructing an object is ClassName(arguments)The arguments of the constructor match the parameters in the _init_ method witho