关于 JavaBean
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JavaBean 类是遵守许多约定的类。但根据类的使用情况,某些约定是否重要。从严格意义上讲,JavaBean 类
。因此,从严格意义上讲,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
So, in the strict sense, a JavaBean class may not be abstract. But an abstract class can be the superclass of a JavaBean class.