Java:匿名类作为现有实现接口的子类?

发布于 2024-09-28 03:52:29 字数 443 浏览 3 评论 0原文

我有接口 IA接口 IB 扩展 IAA 类实现 IA

现在我想创建一个从 A 扩展并实现 IB 的匿名类。

那会是什么样子?我想到了这样的事情:

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

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

或者:

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

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

或者是否不可能创建类似的东西作为匿名类?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人事已非 2024-10-05 03:52:29

我想您可以创建一个抽象的、命名的内部类,将两者结合起来,并用您的匿名类扩展它。

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

有点笨拙,但我认为你不能同时实现两者。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文