Create an Instance of a Class Whose Name Will Be Supplied at Runtime

Create an Instance of a Class Whose Name Will Be Supplied at Runtime

You need to create an instance of a class whose class name you do not know at design/implementation time. You’ll be supplied with the class name during runtime, in other words, your program will NOT know which class to instantiate until it is executing.

This is a common scenario for many a frameworks and products as they need to create instances of user defined classes of which the framework authors have no knowledge of. Hence, the framework can’t use the new operator to create such instances. As an example, a Servlet Container needs to create instances of Servlet classes defined by servlet developers. How does the servlet container do that? Can we do the same in our programs?

Yes and here is how:

Say, DynamicInstantiation.java needs to create an instance of a class supplied to it as a command line argument as follows:

java DynamicInstantiation com.sun.cust.CustomerImpl

Here is how DynamicInstantiation can instantiate CustomerImpl class or any other class that is supplied to it by using Java’s Reflection API:

     Class c = Class.forName(className);     c.newInstance();

Here is the complete implementation of DynamicInstantiation class:

public class DynamicInstantiation {  public Object createInstance(String className) throws Exception {    Class c = Class.forName(className);    return c.newInstance();  }  public static void main(String args) throws Exception {    if(args.length != 1) {      System.err.println("Usage: java DynamicInstantiation <class_name>");      return;    }    DynamicInstantiation di = new DynamicInstantiation();    Object o = di.createInstance(args);      System.out.println("Instance of " + args + " created.");  }}

Things to Note:

1. Similar to any Java class, JVM should be able to locate the user defined class using CLASSPATH.

2. The user defined class must define a public default constructor.

3. You must supply fully qualified class name to Class.forName().

Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as