How can an anonymous class extend a superclass or implement an interface?
|
|
Anonymous classes must extend or implement something, like any other Java class, even if it's just For example:
Here, An anonymous class can extend another class using the same syntax:
What you can't do is extend or implement more than one class or interface. You need a named class to do that. |
|||||||
|
|
Anonymous classes always extend superclass or implements interfaces. for example:
Moreover, although anonymous class cannot implement multiple interfaces, you can create an interface that extends other interface and let your anonymous class to implement it. |
|||
|
|
|
An anonymous class usually implements an interface:
If you mean whether you can implement 2 or more interfaces, than I think that's not possible. You can then make a private interface which combines the two. Though I cannot easily imagine why you would want an anonymous class to have that:
|
|||
|
|
|
|||
|
|