The null keyword in java programming language is a reserved word that is used to represent no value. Keywords are basically reserved words which have specific meaning relevant to a compiler.
Syntex: Here is the syntax that displays how to declare and define null values in java programming language.
|
Integer a;a = null; String str; if (str != null) { <statements> } |
Note: Here are some points that must be considered while declaring and assigning a value to a variable.
Assigning a null value to a non-primitive type variable releases the object to which the variable previously referred.
Primitive data types such as byte,
short, int, long, char, float, double, boolean cannot have a null type.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: The null keyword
Post your Comment