Q:

Java program to get the class name using the object of the class

belongs to collection: Java Class and Object Programs

0

Java program to get the class name using the object of the class

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 getClass() method to get the class name using the object of the class and print it.

Program/Source Code:

The source code to get the class name using the object of the class is given below. The given program is compiled and executed successfully.

// Java program to get the class name 
// using the object of the class

public class Main {
  public static void main(String[] args) {
    Main m = new Main();
    System.out.println(m.getClass());
  }
}

Output:

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 created the object of class Main. Then we used the getClass() method to get the name of the class and print 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 represent the class in different w... >>
<< Java program to demonstrate the newInstance() meth...