Java transient关键字小记

transient义为短暂的。在Java中,transient和对象的序列化(持久化)息息相关。

在Java中,要序列化一个对象,则要实现Serializable接口,该接口未提供任何待实现的方法,只要指明该类实现Serializable接口,这个类的所有属性和方法都可以被自动序列化。当对象中自定义了 writeObjectreadObject 方法时,JVM 会调用这两个自定义方法来实现序列化与反序列化。

但是如果只想序列化类中一部分属性,对于一些没必要序列化或比较敏感的属性(比如银行卡账号、密码等),为了安全或其他原因起见,不希望在网络操作(主要涉及到序列化操作,本地序列化缓存也适用)中被传输,这些信息对应的变量就可以加上transient关键字。换句话说,这个字段的生命周期仅存于调用者的内存中而不会写到磁盘里持久化。

也就是说,一旦变量被transient修饰,变量将不再是对象持久化的一部分,该变量内容在反序列化后无法获得访问。

另外,transient关键字只能修饰变量,而不能修饰方法和类。注意,本地变量是不能被transient关键字修饰的。变量如果是用户自定义类变量,则该类需要实现Serializable接口

对于静态变量,不管是否被transient修饰,均不能被序列化。即使静态变量被transient修饰,其反序列化后取到的静态变量的值是保存在JVM静态区的值,不参与对象的序列化和反序列化。

Example

public class Employee implements java.io.Serializable
{
   public String name;
   public String address;
   public transient int SSN;    //短暂的变量SSN
   public int number;
   public void mailCheck()
   {
      System.out.println("Mailing a check to " + name
                           + " " + address);
   }
}
import java.io.*;
 /**
  *序列化Demo
  *
  */
public class SerializeDemo
{
   public static void main(String [] args)
   {
      Employee e = new Employee();
      e.name = "Reyan Ali";
      e.address = "Phokka Kuan, Ambehta Peer";
      e.SSN = 11122333;    //SSN被赋值为11122333
      e.number = 101;
      try
      {
         FileOutputStream fileOut =
         new FileOutputStream("/tmp/employee.ser");
         ObjectOutputStream out = new ObjectOutputStream(fileOut);
         out.writeObject(e);
         out.close();
         fileOut.close();
         System.out.printf("Serialized data is saved in /tmp/employee.ser");
      }catch(IOException i)
      {
          i.printStackTrace();
      }
   }
}
/**
  *反序列化Demo
  *
  */
import java.io.*;
 
public class DeserializeDemo
{
   public static void main(String [] args)
   {
      Employee e = null;
      try
      {
         FileInputStream fileIn = new FileInputStream("/tmp/employee.ser");
         ObjectInputStream in = new ObjectInputStream(fileIn);
         e = (Employee) in.readObject();
         in.close();
         fileIn.close();
      }catch(IOException i)
      {
         i.printStackTrace();
         return;
      }catch(ClassNotFoundException c)
      {
         System.out.println("Employee class not found");
         c.printStackTrace();
         return;
      }
      System.out.println("Deserialized Employee...");
      System.out.println("Name: " + e.name);
      System.out.println("Address: " + e.address);
      System.out.println("SSN: " + e.SSN);
      System.out.println("Number: " + e.number);
    }
}

反序列化Demo的输出:

Deserialized Employee...
Name: Reyan Ali
Address:Phokka Kuan, Ambehta Peer
SSN: 0
Number:101

有结果可以看出,此时SSN并没有拿到之前的值11122333.


或者,你想自己指定需要序列化的属性或方法,而不想让其自动序列化,那么就不能实现Serializable接口了,换做实现Externalizable接口,则没有任何东西可以自动序列化。但你需要在writeExterna()方法中进行手工指定所要序列化的变量,此时变量是否被transient修饰都不影响其被序列化。

Example

import java.io.Externalizable;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectInputStream;
import java.io.ObjectOutput;
import java.io.ObjectOutputStream;

/**
 * @descripiton Externalizable接口的使用
 * 
 *
 */
public class ExternalizableDemo implements Externalizable {

    private transient String content = "我将会被序列化,不管我是否被transient关键字修饰";

    @Override
    public void writeExternal(ObjectOutput out) throws IOException {
        out.writeObject(content);
    }

    @Override
    public void readExternal(ObjectInput in) throws IOException,
            ClassNotFoundException {
        content = (String) in.readObject();
    }

    public static void main(String[] args) throws Exception {
        
        ExternalizableTest et = new ExternalizableTest();
        ObjectOutput out = new ObjectOutputStream(new FileOutputStream(
                new File("test")));
        out.writeObject(et);

        ObjectInput in = new ObjectInputStream(new FileInputStream(new File(
                "test")));
        et = (ExternalizableTest) in.readObject();
        System.out.println(et.content);

        out.close();
        in.close();
    }
}

输出结果为:

我将会被序列化,不管我是否被transient关键字修饰

你可能感兴趣的:(Java transient关键字小记)