Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can constructor return a null object?

While looking through some old code I came across this gem:

MyObject o = new MyObject("parameter");
if (o == null) o = new MyObject("fallback parameter");

The second line is marked in Eclipse as dead code, and I understand why. No exception seems to be explicitly thrown, and it isn't possible for the MyObject constructor to throw any kind of exception (such as NullPointerExceptions).

My question is why there is a null check? Was it previously possible in an old version of Java for a constructor to return null? Or is this simply useless and dead code?

like image 664
Jonathan Pitre Avatar asked Jun 19 '12 14:06

Jonathan Pitre


3 Answers

The code is dead in any version of Java. It's not possible for a constructor to return null, and even if an exception would be thrown from the constructor, the next line won't be called.

like image 86
tibtof Avatar answered Nov 12 '22 02:11

tibtof


No, it has never been possible. Maybe a previous version of the code used some factory method which could return null:

MyObject o = createMyObject("parameter");
if (o == null) o = createMyObject("fallback parameter");
like image 55
JB Nizet Avatar answered Nov 12 '22 03:11

JB Nizet


From section 15.9.4 of the JLS:

The value of a class instance creation expression is a reference to the newly created object of the specified class. Every time the expression is evaluated, a fresh object is created.

So no, it can never return null.

like image 52
Jon Skeet Avatar answered Nov 12 '22 03:11

Jon Skeet