Q:

Java program to get the list of defined classes and interfaces in a class

belongs to collection: Java Class and Object Programs

0

Java program to get the list of defined classes and interfaces in a class

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 list of defined classes and interfaces in a class is given below. The given program is compiled and executed successfully.

// Java program to get the list of defined classes 
// and interfaces in a class

import java.lang.reflect.Field;
public class Main {
  public interface Inf {}

  public class Sample implements Inf {}

  public static void main(String[] args) throws ClassNotFoundException {
    Class cls = Main.class;
    Class[] classes = cls.getClasses();

    System.out.println("Classes and Interfaces defined in Main class: ");
    for (Class cl: classes)
      System.out.println(cl);
  }
}

Output:

Classes and Interfaces defined in Main class: 
class Main$Sample
interface Main$Inf

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.

 

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 methods of a class... >>
<< Java program to get the list of fields of a class...