Hacker News new | ask | show | jobs
by saheb37 3734 days ago
don't you get tired of NPEs and checking everything with possibility that it can be null? Scala solves it using Options.

There are lot more, but this is one which irritates me the most.

1 comments

Java 8 (or Guava for older versions) supports "Optional".

It is good practice for methods to return an Optional instead of null if you can't guarantee a non null value.