Q:

Java program to demonstrate the getName() method

belongs to collection: Java Class and Object Programs

0

Java program to demonstrate the getName() method

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 demonstrate the getName() method is given below. The given program is compiled and executed successfully.

// Java program to demonstrate the 
// getName() method

@interface A {}
public class Main {
  public static void main(String[] args) throws ClassNotFoundException {
    Class cls1 = A.class;
    Class cls2 = Main.class;

    System.out.println("The class name associated with cls1: " + cls1.getName());
    System.out.println("The class name associated with cls2: " + cls2.getName());
  }
}

Output:

The class name associated with cls1: A
The class name associated with cls2: 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 got the name of interface A and class Main using the getName() 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 simple name of the class... >>
<< Java program to check an annotation type using the...