Is there any way in Java that a statement like
Thing thing = new Thing();
could not result in a new object being created (i.e. any way that thing could end up pointing to an already-existing object)?
|
|
Is there any way in Java that a statement like
could not result in a new object being created (i.e. any way that |
||
|
|
The call to |
||
|
|
|
|
No. After executing that line of code |
||
|
|
|
|
new always creates new object. In java you can't reuse object using new. Really this leads to performance issue in certain java class. For e.g. Boolean class can practically stores only two values (true or false), still a user can create multiple objects with same value using new. |
||
|
|
|
|
Several people are saying that an object won't be created if the constructor throws an exception. I would just like to point out that this is not true. As an example, take a look at this very bad code:
The output is:
|
||
|
|
|
|
In Java, the only thing I can think of is using the Singleton pattern. This would not create multiple new instances of Thing, but rather an instance of the same object every time. |
||||
|
|
|
New is always new (maybe with some exceptions for primitive wrappers), but if reusing objects is a desired behaviour there are ways to do that through certain design patterns (singleton, factory, pool etc.). |
||||||||||
|
|
|
Using |
||
|
|
|
|
as far as I know it's not like C++ where you can overload |
||
|
|
|
|
I'm not sure if I understand your question correctly. The definition of new is to allocate and initialize a new object. I guess you might be able store a static reference to a object, and then clone it to make a new object, but that object would still be new. Since you cannot modify the value of |
||
|
|
|
|
While this is an interesting question, what problem are you encountering that makes you ask it? |
||
|
|
|
No, in the case there's no space in memory for it, you should get an OutOfMemoryError. Of course, there could be other exceptions thrown by the Thing constructor. |
||||||
|
|
|
If the constructor for Thing throws an exception, the object isn't created. However, |
||
|
|
|
|
The The thing is a little different with static methods that return a reference, such as |
||
|
newoperator, but you can't in Java. Which does not make me sad. – mmyers Jul 2 at 19:28