+1 vote
in JAVA by
What does null mean in java?

When a reference variable doesn’t point to any value it is assigned null.

Example : Employee employee;

In the above example employee object is not instantiate so it is pointed no where

1 Answer

0 votes
by

When a reference variable doesn’t point to any value it is assigned null.

Example : Employee employee;

In the above example employee object is not instantiate so it is pointed no where

Related questions

0 votes
asked Jun 17, 2019 in JAVA by reins.robin
+1 vote
asked Jun 17, 2019 in JAVA by reins.robin
...