DRAFT
ReferenceIntoStack
Misconception:
Java references can refer to data located on the stack.
Incorrect
References can point into the stack
Correct
CorrectionHere is what's right.
Here is what's right.
Wrong. A reference in Java refers to objects on the heap. In Java one cannot refer to data on the stack.
Language
Java