From Null to Nullable
Every java programmer hates NullPointerException
. Indeed, any variable1 in java can take this special value of null
, which indicates a lack of value in this variable. They are like landmines in your code; stomp upon one and boom! Your program is dead. Thus, programming in java is like wading …