如:
class T implements Serializable { double d = 2.3; int i = 10; int j = 9; transient int k = 2; }
当前这个对象,如果将它存放在本地的话,k的值取出来是0。