-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
各章节文字错误 #187
Comments
第10章集合类 1. 175页 小结第4段中 2. 184/185页代码 3. 223页下方 4. 227页 filter代码注释 5. 228页最下方代码 6. 235页图10-38下方 |
第11章反射 1. 239页 2. 247页 |
第12章序列化 1. 249页 2. 250页 3. 253/255页 4. 258/259页 // be like clone(), allocate array based upon size not capacity
int capacity = calculateCapacity(elementData, size);
SharedSecrets.getJavaOISAccess().checkArray(s, Object[].class, capacity); 5. 269页 |
1. 74页,图8-1中
右下方
String "abcdf"
->"abcdef"
2. 80页,JDK7段表述
其使用
new String
创建了一个新字符串,但前面JDK6也是同样,不同的是构造方法的处理(此处没去安装低版本JDK验证,只是看书中表述)
3. 81页,代码中
第三个注释,使用
replace
->replaceAll
4. 86页,代码上方
它也是通过
StringBuilde
->StringBuilder
5. 99页,代码上方
在Java中要添加
/
->\
6. 113页,8.12首行表述
在运行期向
字符串
中动态加入 ->字符串池
7. 114页
代码解释2中,因为"1"已经在
字符串
中 ->字符串池
最后一行,字面量"11"则是在代码
7
这一行才会存入字符串池 ->6
,和后续表述不符8. 115页
最后一行代码
new StringBuilder("Holl") .append("is")
中有明显空格The text was updated successfully, but these errors were encountered: