
444 CHAPTER 7 Object-Oriented Programming,Part 2: User-Defined Classes
CHAPTER SUMMARY
Figure 7.15 shows part of the generated index.html file, and Figure
7.16 shows the generated documentation for the setMilesDriven and
setGallonsOfGas methods.
7.17 Chapter Summary
■
The members of a Java class include its instance variables, class
variables, and methods.
■
One copy of each instance variable is created for every object
instantiated from the class. One copy of each class variable and
method is shared by all objects of the class.
■
By convention, class names are nouns and begin with a capital let-
ter; all internal words begin with a capital letter, and other ...