开发者

Java: anonymous class as subclass from existing implementing an interface?

开发者 https://www.devze.com 2023-01-21 03:22 出处:网络
I have interface IA, interface IB 开发者_开发百科extends IA and class A implements IA. Now I want to create an anonymous class which extends from A and implements IB.

I have interface IA, interface IB 开发者_开发百科extends IA and class A implements IA.

Now I want to create an anonymous class which extends from A and implements IB.

How would that look like? I thought about something like this:

new A() implements IB { /* ... */ }

( Error: Type mismatch: cannot convert from A to IB )

or:

new IB() extends A { /* ... */ }

( Error: Syntax error on token(s), misplaced construct(s) )

Or is it not possible to create something like that as an anonymous class?


I suppose you could create an abstract, named inner class that combined the two and extend that with your anonymous class.

   private static abstract class AB extends A implements IB {};
    ...
   new AB() {};

Bit clumsy, but I don't think you can implement both.

0

精彩评论

暂无评论...
验证码 换一张
取 消