11th Edition Volume 1 (Java SE 9 - 11)
Page 54
Change “Except, of course, when n is negative.” to “Except, of course, when n is odd and negative.”
Page 69
Change the method names empty and blank to isEmpty and isBlank.
Page 69
In the API note for the startsWith/endsWith methods, change “returns true if the string starts or ends with suffix.” to “returns true if the string starts with prefix or ends with suffix.”
Page 628 preferences/ImageViewer.java
Change line 60 from
node.put("image", image);
to
if (image != null) node.put("image", image);

来源:http://horstmann.com/corejava/bugs.html#CJ11V1