Had a conversation with a coworker the other day about this.
There's the obvious which is to use a constructor, but what other ways are there?
|
Had a conversation with a coworker the other day about this. There's the obvious which is to use a constructor, but what other ways are there?
| |||
|
feedback
|
|
There are four different ways to create objects in java: A. Using new keyword This is the most common way to create an object in java. Almost 99% of objects are created in this way.
B. Using Class.forName() If we know the name of the class & if it has a public default constructor we can create an object in this way.
C. Using clone() The clone() can be used to create a copy of an existing object.
D. Using object deserialization Object deserialization is nothing but creating an object from its serialized form.
You can read from here | |||||||||||||||||
feedback
|
|
There are various ways:
| |||||||
feedback
|
|
Yes, you can create objects using reflection. For example, | |||||||||||||
feedback
|
|
Within the Java language, the only way to create an object is by calling it's constructor, be it explicitly or implicitly. Using reflection results in a call to the constructor method, deserialization uses reflection to call the constructor, factory methods wrap the call to the constructor to abstract the actual construction and cloning is similarly a wrapped constructor call. | ||||
|
feedback
|
|
This should be noticed if you are new to java, every object has inherited from Object protected native Object clone() throws CloneNotSupportedException; | |||||||||
feedback
|
|
Cloning and deserialization. | |||
|
feedback
|
|
Also, you can de-serialize data into an object. This doesn't go through the class Constructor ! UPDATED : Thanks Tom for pointing that out in your comment ! And Michael also experimented.
Please see Tom's answer for a complete treatment of all cases ;-) | |||||||||||
feedback
|
|
Also you can use
| |||
|
feedback
|
|
When in doubt, look at the language spec. 12.5 Creation of New Class Instances http://java.sun.com/docs/books/jls/third_edition/html/execution.html#12.5 15.9 Class Instance Creation Expressions http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#41147 | |||
|
feedback
|
To summarize the answer - one main way - by invoking the constructor of the object's class. Update: Another answer listed two ways that do not involve using a constructor - deseralization and cloning. | ||||
|
feedback
|
|
Reflection will also do the job for you.
is another way to create a new instance of a class. In this case, you will also need to handle the exceptions that might get thrown. | |||
|
feedback
|
|
You can also clone existing object (if it implements Cloneable).
| |||
|
feedback
|
|
Other ways if we are being exhaustive.
| |||
|
feedback
|
|
There is a type of object, who can't be constructed by normal instance creation mechanisms (calling constructors): Arrays. Arrays are created with
or
A third way would be
Of course, cloning and deserializing works here, too. There are many methods in the Standard API which return arrays, but they all in fact are using one (or more) of these ways. | |||
|
feedback
|
|
There are four different ways (I really don’t know is there a fifth way to do this) to create objects in java:
Now you know how to create an object. But its advised to create objects only when it is necessary to do so. | ||||
|
feedback
|
|
Declaring a String literal, if the String hasn't been pooled yet, then it creates a new String object. Also autoboxing a literal creates a new object: String s = "hello"; Integer i = 5; | |||
|
feedback
|
|
We can create an objects in 5 ways:
| ||||
|
feedback
|
|
Depends exactly what you mean by create but some other ones are:
| |||
|
feedback
|
|
From an API user perspective, another alternative to constructors are static factory methods (like BigInteger.valueOf()), though for the API author (and technically "for real") the objects are still created using a constructor. | |||
|
feedback
|
|
there is also ClassLoader.loadClass(string) but this is not often used. and if you want to be a total lawyer about it, arrays are technically objects because of an array's .length property. so initializing an array creates an object. | |||
|
feedback
|
|
From Josh block: used named static methods as "constructors" as they are more readable, as opposed to many constructors named the same with differing parameter lists. --James | |||
|
feedback
|
|
There are FIVE different ways to create objects in java: 1)Using new keyword This is the most common way to create an object in java. Almost 99% of objects are created in this way. MyObject object = new MyObject();//normal way 2)By Using Factory Method :
3)By Using Cloning Concept:
4) Using Class.forName() :
MyObjectName object = (MyObjectNmae) Class.forName("PackageName.ClassName").newInstance();
5) Using object deserialization : Object deserialization is nothing but creating an object from its serialized form.
| |||
|
feedback
|
|
The following are the no.of ways to create an object.
| ||||
|
feedback
|
|
There are six ways to Create an Object: | ||||
|
feedback
|
|
With Reflexion too.. | |||
|
feedback
|
Unsafe.allocateInstance(Class). The rest call one of those. Reflection is compiled to c-tor call, deserialization to Unsafe.allocateInstance(Class). You can create your own API and you will end up calling one of those. – bestsss Feb 25 '11 at 18:06Unsafeis an implementation-specific detail of Java and isn't mentioned anywhere in the spec. It is entirely possible to build a compliant Java implementation that does not use compile reflection down to code that usesnew,clone, orUnsafe.allocateInstance. – templatetypedef Jul 14 '11 at 0:49