Errata (fourth edition)
(Errata for the third edition are here.)
(Errata for the second edition are
here.)
Chapter 3:
Page 79:
"The mail client has three methods: getNextMailItem,
printNextMailItem, and sendMessage."
should read
"The mail client has three methods: getNextMailItem, printNextMailItem, and sendMailItem."
Page 84, Exercise 3.41:
"Set a breakpoint in the first line of the sendMessage method..."
should read
"Set a breakpoint in the first line of the sendMailItem method..."
Chapter 4:
Page 106, within the exercise text:
"...and type into the constructor's parameter dialogue box"
should read
"...and type into the method's parameter dialogue box"
Chapter 9:
Page 288, Code 9.3:
In line 11 of the source code (the second return statement), the String
"*\n"
should read
"\n"
(In other words: There is an asterisk in the string in the first case, but not in the second.)
Back to main page
|