Q:

Java program to get the simple name of the class

belongs to collection: Java Class and Object Programs

0

Java program to get the simple name of the 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 simple name of the class is given below. The given program is compiled and executed successfully.

// Java program to get the simple name of 
// the class

public class Main {
  public static void main(String[] args) throws ClassNotFoundException {
    Class cls = Class.forName("java.lang.String");

    System.out.println("The class name associated with cls: " + cls.getName());
    System.out.println("The simple class name associated with cls: " + cls.getSimpleName());
  }
}

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 simple name of the "java.lang.String" class using the getSimpleName() 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 print the class loader of the give... >>
<< Java program to demonstrate the getName() method...