Hacker News new | ask | show | jobs
by specialist 3428 days ago
The Null Object pattern is The Correct Answer (for Java like languages).

Java's Optional is a bad idea implemented badly made even more bad by bad usage.

1 comments

Option is a takeoff of the Null Object pattern.

Option(null).map(str => str + "!").foreach(str => println(str)) is a noop.

Yeah, the Null Object Pattern is just optionals except you have to re-implement it each you need optional semantics.
No. They're opposites.

"...an object which implements the expected interface, but whose method body is empty. "

https://en.wikipedia.org/wiki/Null_Object_pattern