| created 6/15/98; revised 09/05/99, 06/12/00 |
CHAPTER 29 --- Strings and Object References
In previous examples,
method parameters
were primitive data types, like Point pt = new Point(); pt.move( 14, 22 ); This chapter discusses how object references are used as parameters. The class String will be used in many of the examples. Chapter Topics:
|
QUESTION 1:(Review:) What TWO things does the following statement do? Click Here after you have answered the questionString zeta = new String( "The last rose of summer." ); |