为什么在Java的抽象类中可以声明瞬态变量?

huangapple go评论62阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2020年8月16日 02:46:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/63429675.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定