- ISBN13: 978-1-59059-516-9
- ISBN10: 1-59059-516-5
- 360 pp.
- Published Dec 2005
- Print Book Price: $49.99
- eBook Price: $34.99
Errata Submission
If you think that you've found an error in SCJD Exam with J2SE 5, Second Edition, please let us know about it. You will find any confirmed erratum below, so you can check if your concern has already been addressed.
Errata
| Issue | Author's Response |
|---|---|
| ch2, pg 21 The last sentences under both the "Method Naming Conventions" and "Variable Naming Conventions" sections are confusing, they don't seem to belong there or should be changed. |
ch2, pg 21: The last sentences under both the "Method Naming Conventions" and "Variable Naming Conventions" sections are meant to be be displaying examples of "camelCase". The quotations around the word "camelCase" are missing, and the first C has been capitalized by mistake. |
| Under "Understanding Atomic Operations" on page 104, code line 2a should be first so that the assignment to y precedes the incrementing of x: 1 x = 7; 2 y = x++; // y == 7, x = 8 is really 1 x = 7; 2a y = x; 2b int temp = x + 1; 2c x = temp; |
The example code under "Understanding Atomic Operations" on page 104, should be changed so the increment to x is a prefix increment, not a postfix increment: 1 x = 7; 2 y = ++x; |
