Null keyword in Java

What is null? null is a very important concept in Java. The original intention of inventing null was to denote the absence of something. But over the years it has troubled Java developers with the nasty NullPointerException. Before we start, let’s recall and understand what is variable and what is a value? Variables are basically …

Null keyword in Java Read More »