A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Java program to demonstrate the newInstance() method
Q:

Java program to demonstrate the newInstance() method

0

Java program to demonstrate the newInstance() method

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

In this program, we will use the newInstance() method, which is used to create a new instance of the class represented by this Class object.

Program/Source Code:

The source code to demonstrate the newInstance() method is given below. The given program is compiled and executed successfully.

// Java program to demonstrate the newInstance() method

public class Main {
  public static void main(String[] args) throws ClassNotFoundException, IllegalAccessException, InstantiationException {
    Class cls = Class.forName("Main");
    Object ob = cls.newInstance();

    System.out.println("Class is: " + ob.getClass());
  }
}

Output:

Class is: class Main

Explanation:

In the above program, we created a public class Main that contains a main() method. The main() method is the entry point for the program. Here, we represented class Main using Class.forName() method. Then we used the newInstance() method to create an instance of represented class. After that, we get the class name using the getClass() method and printed the result.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now