Can a transient field in a class be obtained using

2019-04-21 18:17发布

Can a transient field in a class be obtained using reflection? (using getDeclaredField(..))

4条回答
ゆ 、 Hurt°
2楼-- · 2019-04-21 18:30

transient fields have nothing to do with reflection. The keyword only signals that a field should be skipped during Java serialization process. So reflection can access transient fields just like any other fields.

查看更多
霸刀☆藐视天下
3楼-- · 2019-04-21 18:34

transient indicates that the field will not be serialized. The field is still declared by the class, so it is fair game for reflection.

查看更多
我命由我不由天
4楼-- · 2019-04-21 18:35

Yes, It is a normal field. You can check whether it is transient by:

Modifier.isTransient(field.getModifiers());

transient: A keyword in the Java programming language that indicates that a field is not part of the serialized form of an object. When an object is serialized, the values of its transient fields are not included in the serial representation, while the values of its non-transient fields are included.

So no logical reason for it not to be accessible by reflection. It's the value of the field that is ignored (sometimes), not the field itself.

(btw, what hindered you from just trying to call getDeclaredField("yourTransientField")?)

查看更多
【Aperson】
5楼-- · 2019-04-21 18:39

Among all the objects that needs to be serialized there are those one that need not to be serialized. That's why this objects are marked with the keyword transient.

查看更多
登录 后发表回答