Java Reflection - Java Class.toString()








Syntax

Class.toString() has the following syntax.

public String toString()

Example

In the following code shows how to use Class.toString() method.

// w ww. ja  va  2  s  .  com
public class Main {

   public static void main(String[] args) {

     Main c = new Main();
     Class cls = c.getClass();

     // returns the string representation of this class object
     String str = cls.toString();
     System.out.println("Class = " + str);

   }
}

The code above generates the following result.