Java对象、继承和接口

发布于 2024-10-24 03:08:06 字数 54 浏览 1 评论 0原文

在Java中,一个对象可以有多个不同的类吗?

如果是,继承和接口对其有何影响?

In Java, Can an object have several different classes ?

If yes , how should Inheritance and Interface influence to it?

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

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

发布评论

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

评论(2

半步萧音过轻尘 2024-10-31 03:08:06

这不是一个很好提出的问题。任何对象都可以属于一个且仅有一个类(忽略像 int 这样的非对象基元。)另一方面,一个类可以具有任意数量的超类,因此您的类可以匹配任意类型的“is a”关系其他类别的数量。

在接口问题上,接口带来的只是一个“契约”——你承诺实现某些方法或具有某些属性。这有点类似于多重继承,但并不是真正的多重继承。同样,实现接口意味着该类具有另一个“is a”属性,但这并不意味着它完全引入了其他类。

It's not a very well-posed question. Any object can be of one and only one class (ignoring the non-object primitives like int.) On the other hand, a class may have an arbitrary number of superclasses, so your class can match the "is a" relationship of an artitrary number of other classes.

On the interface question, all an interface brings in is a "contract" -- you're making a promise to implement certain methods or have certain properties. This is somewhat similar to multiple inheritance but not really multiple inheritance. Again, implementing an interface means the class has another "is a" property, but it doesn't mean it's fully bringing in the other classes.

风为裳 2024-10-31 03:08:06

是的

class A{}

class B extends A{}

void foo()
{
  B b = ...; // here object b is of type B and A(by inheritance)

}

Yes

class A{}

class B extends A{}

void foo()
{
  B b = ...; // here object b is of type B and A(by inheritance)

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