接口中是否需要serialVersioUID(我希望不需要)?

发布于 2024-09-02 11:32:51 字数 81 浏览 4 评论 0原文

我的理解是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 技术交流群。

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

发布评论

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

评论(1

梦魇绽荼蘼 2024-09-09 11:32:51

这不是必需的,更重要的是,它不会对序列化在应用程序中的工作方式产生任何影响。

由于 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 add serialVersionUID again.

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