Java Class.getCanonicalName()
Syntax
Class.getCanonicalName() has the following syntax.
public String getCanonicalName()
Example
In the following code shows how to use Class.getCanonicalName() method.
/* w w w . j ava 2s . c o m*/
public class Main {
public static void main(String[] args) {
Main c = new Main();
Class cls = c.getClass();
// returns the canonical name of the underlying class if it exists
System.out.println("Class = " + cls.getCanonicalName());
}
}
The code above generates the following result.