接口中是否需要serialVersioUID(我希望不需要)?
我的理解是serialVersionUID仅适用于类,因为我们只能为类创建对象,而serialVersionUID的概念是用于对象序列化和反序列化。
My understanding is serialVersionUID
is applicable only to classes, because we can create an object only to classes and the concept of serialVersionUID is for object serialization and deserialization.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是必需的,更重要的是,它不会对序列化在应用程序中的工作方式产生任何影响。
由于
serialVersionUID
应该是静态的,即使将其添加到接口中,它也不会被继承,因此您还需要将其添加到实现类中。同样,如果扩展可序列化基类,则需要再次添加serialVersionUID
。It is not required, and more importantly, it will not have any effect on how serialization works in your application.
Since
serialVersionUID
should be static, even if you add it to your interface, it won't be inherited, so you'll need to add one to your implementing class, too. Similarly, if you extend a serializable base class, you need to addserialVersionUID
again.