Class.isAnonymousClass() has the following syntax.
public boolean isAnonymousClass()
In the following code shows how to use Class.isAnonymousClass() method.
//w w w .j ava 2s. c om 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.