Chapter 01 Cheatsheet
Main method parameter
String[] argsString options[]String... friends
Ordering elements in class
- Package
- Import
- Top-level type declaration
- Field declaration
- Method declaration
Primitives
- boolean:
false - byte:
0 - short:
0 - int:
0 - long:
0L - float:
0.0f(without lowercase l or uppercase L, it will be treated as int) - double:
0.0(without lowercase f or uppercase f, it will be treated as double) - char:
\u0000
Garbage collection
- When there is no reference to an object in a currently live thread
- When there are no references pointing to the object
- When all references to the object gone out of scope
❌ Invalid underscore position
- not at the start ->
_1000.00 - not at the end ->
10000.00_ - not beside decimal ->
100_.00