为什么某些接口方法会被另一个接口覆盖?

发布于 2024-12-09 00:42:43 字数 66 浏览 0 评论 0原文

仅仅是出于文档目的(例如 Deque 接口覆盖 Queue 接口的所有方法,为它们提供另一个描述),还是还有其他原因?

Is it just for documentation purposes (e.g. Deque interface override all methods of the Queue interface, giving them another description), or there are other reasons ?

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

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

发布评论

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

评论(1

冷弦 2024-12-16 00:42:43

您可以使用它来强制执行更具体的方法签名和返回类型。考虑:

public interface Foo {
  Object result();
}

public interface Bar extends Foo {
  @Override
  String result(); // Bar redefines result() to return a String
}

You can use it to enforce more specific method signatures and return types. Consider:

public interface Foo {
  Object result();
}

public interface Bar extends Foo {
  @Override
  String result(); // Bar redefines result() to return a String
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文