Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 this is there? Was it previously possible in an old version of Java for a constructor to return null? Or is this simply useless and dead code?

Thanks!

share|improve this question
What exactly is this code for... – Alex Lockwood Jun 19 '12 at 14:45
7  
Not relevant. The question is very simple: can a constructor return null? You don't need to know what it is used for. – m0skit0 Jun 19 '12 at 14:47
3  
The OP asked "why this is there". Do you have an answer for that question? – Alex Lockwood Jun 19 '12 at 14:57
@AlexLockwood The answer, as everyone below gently put it, is that this is there for no real reason, as what it does is completely useless. There is no reason since o can never be null, and that's what I wanted to know. – Nathan Sabruka Jun 19 '12 at 15:32
Oh... well since you asked "why this is there?", I assumed that it wasn't your code. That's why I asked "what is this code for..." – Alex Lockwood Jun 19 '12 at 15:33

8 Answers

up vote 53 down vote accepted

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.

share|improve this answer

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");
share|improve this answer

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.

share|improve this answer
2  
+1 Go to the spec. – Phil Jun 19 '12 at 21:07

My guess is that it was written by a C programmer who is used to testing the return value of malloc for null. malloc can return null if you run out of memory.

The code doesn't make sense in Java since Java will throw an OutOfMemoryError if it runs out of memory.

share|improve this answer
+1 for mentioning OutOfMemoryException – Sarel Botha Jun 19 '12 at 19:07
2  
Actually it's an OutOfMemoryError ;-) – Joachim Sauer Jun 20 '12 at 6:54
@JoachimSauer Oops. Good catch. – Jack Edmonds Jun 20 '12 at 14:52

This was simply usesless dead code. Once CTOR has executed successfully, you have reference to the object.

share|improve this answer

The answer is simple: person who wrote the code was a paranoid c++ programmer. In C++ you may overload operator new and use it as a simple memory allocator (aka malloc).

share|improve this answer

When you create a new Object(), you create an address in memory, and this address is not 'null', but your Object may be empty.

You have to test 'null' for Object transmitted by parameters.

share|improve this answer

It's simply dead code.

new MyObject("parameter") will not return null in any version of java.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.