What is difference between Class.forName() and Class.forName().newInstance()?
I can not get the difference deeply (I have read something about them!). Could you please help me? Thanks.
|
|
|
Maybe an example demonstrating how both methods are used will help you to understand things better. So, consider the following class:
As explained in its javadoc, calling Then, calling And running this
The big difference with the traditional A typical example is the JDBC API which loads, at runtime, the exact driver required to perform the work. EJBs containers, Servlet containers are other good examples: they use dynamic runtime loading to load and create components they don't know anything before the runtime. Actually, if you want to go further, have a look at Ted Neward paper Understanding Class.forName() that I was paraphrasing in the paragraph just above. EDIT (answering a question from the OP posted as comment): The case of JDBC drivers is a bit special. As explained in the DriverManager chapter of Getting Started with the JDBC API:
To register themselves during initialization, JDBC driver typically use a static initialization block like this:
Calling As a side note, I'd mention that all this is not required anymore with JDBC 4.0 and the new auto-loading feature of JDBC 4.0 drivers. See JDBC 4.0 enhancements in Java SE 6. |
|||||||||||||||
|
|
Class.forName() gives you the class object, which is useful for reflection. The methods that this object has are defined by Java, not by the programmer writing the class. They are the same for every class. Calling newInstance() on that gives you an instance of that class (i.e. calling |
||||
|
|
|
In JDBC world, the normal practice (according the JDBC API) is that you use
Invoking
But there were also buggy JDBC drivers, starting with the
The only way to get it to work dynamically is to call |
|||
|
|
|
Class.forName() gets a reference to a Class, Class.forName().newInstance() tries to use the no-arg constructor for the Class to return a new instance. |
|||
|
|
|
"Class.forName()" returns the Class-Type for the given name. "newInstance()" does return an instance of this class. On the type you can't call directly any instance methods but can only use reflection for the class. If you want to work with an object of the class you have to create an instance of it (same as calling "new MyClass()"). Example for "Class.forName()"
Example for "Class.forName().newInstance()"
|
||||
|
|
|
just adding to above answers, when we have a static code (ie code block is instance independent) that needs to be present in memory, we can have the class returned so we'll use Class.forname("someName") else if we dont have static code we can go for Class.forname().newInstance("someName") as it will load object level code blocks(non static) to memory |
|||
|
|