29

Java:
Integer value = null;

value + 100 --> null100

😒

Comments
  • 3
    That is only true in the context of String concatenation. Otherwise, it is an outright NPE due to unboxing :-(
Add Comment