接口与抽象类

发布于 2024-11-06 09:48:50 字数 100 浏览 1 评论 0原文

我有点熟悉抽象类和接口类之间的区别,但是 你认为下面这句话的意思是什么?

接口只能定义常量,而抽象类可以有字段。

I am a little bit familiar with the difference between Abstract and Interface classes but
What do you think is the meaning of the sentence below?

An interface can only define constants while abstract class can have fields.

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

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

发布评论

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

评论(4

等待我真够勒 2024-11-13 09:48:50

接口只能定义常量,而抽象类可以有字段。

接口中的字段是隐式的 publicstaticfinal

这与抽象类不同

An interface can only define constants while abstract class can have fields.

your field from interface is by implicitly public, static, final

which isn't case with abstract class

幻梦 2024-11-13 09:48:50

常量 - 静态,不改变(static final
字段 - 特定于实例、不断变化

由于接口无法实例化,因此只能具有静态且不可变的属性。另一方面,抽象类可以扩展,并且它们的子类可以实例化,因此您可以拥有特定于实例的、不断变化的属性。

constants - static, not changing (static final)
fields - instance-specific, changing

Since interfaces cannot be instantiated, you can only have static and not-changing properties. On the other hand abstract classes can be be extended, and their subclasses - instantiated, so you can have instance-specific, changing properties.

空名 2024-11-13 09:48:50

嗯,这个说法在技术上是不正确的,他们指的是接口上的所有变量都必须声明为静态,而抽象类没有这样的限制。

该声明是不正确的,因为 Java 没有常量,只有 final 仍然是可修改的,因此不是常量。

Well the statment is technically incorrect what they are refering to is that all variables on an interface must be declared static whereas abstract classes have no such limitation.

The statement is incorrect since Java does not have constants only final which are still modifiable and thus not constant.

七婞 2024-11-13 09:48:50

对 Jigar Joshi 答案的补充。我们可以实现任意数量的接口,但只能扩展一个抽象类。

Additional to Jigar Joshi answer. We can implements any number of interface but we can extend only one abstract class.

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