Java Examples in a Nutshell by David Flanagan The following changes were made in the 4/00 reprint: (1) The last paragraph did read "There were referring, of course" now reads "They were referring, of course" {6} Example 1-3: lines 8 and 9: int current, prev=1, prevprev=0; // Initialize some variables for(int i = 0; i < 20; i++) { // Loop exactly 20 times now reads int current, prev=1, prevprev=1; // Initialize some variables System.out.print("1 1 "); // Output the initial two values for(int i = 2; i < 20; i++) { // Loop, outputting remaining values and in the paragraph above, in line 5 "First, it again uses a for statement to loop 20 times." now reads "First, it again uses a for statement as its main loop." {114} The line cardlayout.next(CardLayoutExample2.this); now reads cardlayout.next(CardLayoutExample.this); (197) Example 9-7, line 7 * This applet uses the connects to the ... now reads * This applet connects to the ... {258} Example 12-1, line 18 else if (c.getModifiers() != null) now reads else if (c.getSuperclass() != null) <296> para. 1, line 2-3: ... the 4.XX "RemoteBank interface" RemoteBank interface ... now reads ... the RemoteBank interface ... <304> para. 1, line 1: Example 15-4 s.XX "remote method invocation(RMI)" "MudServer class" hows the ... now reads Example 15-4 shows the ...