Q:

Java program to get the name of the generic superclass

belongs to collection: Java Class and Object Programs

0

Java program to get the name of the generic superclass

All Answers

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

Program/Source Code:

The source code to get the name of the generic superclass is given below. The given program is compiled and executed successfully.

// Java program to get the name of the 
// generic superclass

public class Main {
  public static void main(String[] args) throws ClassNotFoundException {
    Class cls1 = Class.forName("Main");
    Class cls2 = Class.forName("java.util.ArrayList");
    Class cls3 = Class.forName("java.lang.Object");

    System.out.println("The generic superclass is: " + cls1.getGenericSuperclass());
    System.out.println("The generic superclass is: " + cls2.getGenericSuperclass());
    System.out.println("The generic superclass is: " + cls3.getGenericSuperclass());
  }
}

Output:

The generic superclass is: class java.lang.Object
The generic superclass is: java.util.AbstractList<E>
The generic superclass is: null

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 get the name of the generic superclass using the getGenericSuperclass () method and printed the result.

 

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

total answers (1)

Java Class and Object Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to get the list of implemented interf... >>
<< Java program to get the name of the superclass...