java transient变量修饰符,修饰不用序列化属性
如:class XXX implement serializerable{
transient Map fieldA ;//可能的情况为:存有好多数据,但只是执行某操作的时候用,执行完了就不用了
};