关于 JavaBean

发布于 2024-11-28 19:14:49 字数 238 浏览 1 评论 0原文

可能的重复:
Java Bean 到底是什么?

这是一个关于 Java Bean 的简单问题,班级类型有限制吗?例如,bean 可以是抽象类?

谢谢

Possible Duplicate:
What is a Java Bean exactly?

This is a simple question about Java Bean, there is some restriction in the type of classe? For example, a bean can be a abstract class ?

Thanks

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

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

发布评论

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

评论(1

断肠人 2024-12-05 19:14:49

JavaBean 类是遵守许多约定的类。但根据类的使用情况,某些约定是否重要。从严格意义上讲,JavaBean 类

  • 必须有一个公共的无参数构造函数,允许实例化它
  • 必须具有通过 getter 和 setter 可用的属性,并且
  • 必须是可序列化的

。因此,从严格意义上讲,JavaBean 类可能不是抽象的。但抽象类可以是 JavaBean 类的超类。

A JavaBean class is a class which respects a number of conventions. But depending on the usage of the class, some conventions are or aren't important. In the strict sense, a JavaBean class

  • must have a public no-arg constructor allowing to instantiate it
  • must have properties available through getters and setters
  • must be serializable

So, in the strict sense, a JavaBean class may not be abstract. But an abstract class can be the superclass of a JavaBean class.

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