DRAFT
PrimitiveIsObject
Misconception:
Values of primitive types (e.g., a double number) are stored as objects on the heap.
Incorrect
Primitive values are heap objects
Correct
CorrectionHere is what's right.
Here is what's right.
Values of primitive types are stored directly inside variables. In it not possible to have a reference pointing to a primitive value.
Language
Java