英文:
Why is it possible to declare transient variables in abstract class in java?
问题
抽象类和接口无法实例化,因此无法进行序列化。但是,在抽象类中允许使用 transient 变量的目的是什么?
英文:
Since abstract class and interface cannot be instantiated hence serialization is not applicable, however
what is the purpose of allowing transient variables in abstract class?
答案1
得分: 1
因为有人可能会创建一个非抽象的子类,然后实例化它。
英文:
Because somebody might create a subclass that is not abstract and then instantiate it.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论