DRAFT
NullPointerExceptionCompileTime
Misconception:
The compiler is able to detect potential NullPointerException
s
and does not compile code that has them.
Incorrect
NullPointerExceptions are detected at compile time
Correct
NullPointerExceptions are detected at runtime
Language
Java