Java Class.isAnonymousClass()
Syntax
Class.isAnonymousClass() has the following syntax.
public boolean isAnonymousClass()
Example
In the following code shows how to use Class.isAnonymousClass() method.
/*from ww w . j av a2s. co m*/
public class Main {
public static void main(String[] args) {
Main c = new Main();
Class cls = c.getClass();
// returns the name of the class
String name = cls.getName();
System.out.println("Class Name = " + name);
// returns true if this class is an anonymous class
boolean retval = cls.isAnonymousClass();
System.out.println(retval);
}
}
The code above generates the following result.