+ 8
What is Anonymous class
4 Respostas
+ 11
Anonymous Inner class is a class which has no name and it is either a subclass of a class or an implementer of an interface.
http://www.programmerinterview.com/index.php/java-questions/java-anonymous-class-example/
+ 2
class without name
+ 1
in the code
JPanel panel = new JPanel(new String("This String is Anonymous");
the String is an example of an anonymous object
- 2
Who knows, who knows