In Java, both Class.forName() and Class.forName().newInstance() play crucial roles in dynamic class loading. However, they serve distinct purposes.
The Class.forName() method takes a fully qualified class name as a string and returns the Class object associated with that class. It does this by using the class loader to locate the class file and read its contents. Class.forName() does not instantiate the class. It simply provides access to its metadata and information.
The Class.forName().newInstance() method, on the other hand, creates a new instance of the class represented by the Class object returned by Class.forName(). It does this by invoking the class's default constructor.
Let's consider an example to illustrate the difference:
package test; public class Demo { public Demo() { System.out.println("Hi!"); } public static void main(String[] args) throws Exception { Class clazz = Class.forName("test.Demo"); Demo demo = (Demo) clazz.newInstance(); } }
In this example:
The key difference between Class.forName() and Class.forName().newInstance() is that Class.forName() only loads the class, while Class.forName().newInstance() not only loads the class but also creates an instance of that class.
Class.forName() and Class.forName().newInstance() are commonly used in scenarios where dynamic class loading is required. Examples include:
The above is the detailed content of What is the Key Difference Between `Class.forName()` and `Class.forName().newInstance()` in Java?. For more information, please follow other related articles on the PHP Chinese website!