transient關鍵字的使用

transient這個關鍵字不怎麼常用在web應用開發中。但也是要知道有這麼一個東西的。主要的用途在序列化中,下面貼上一段來自網上的例子就明白了

import java.io.*;
import java.util.*;

class Logon implements Serializable {
    private static final long serialVersionUID = -732613846174452100L;
    private Date date = new Date();
    private String username;
    private transient String password;

    Logon(String name, String pwd) {
        username = name;
        password = pwd;
    }

    public String toString() {
        String pwd = (password == null) ? "(n/a)" : password;
        return "logon info: \n " + "username: " + username + "\n date: "
                + date.toString() + "\n password: " + pwd;
    }

    public static void main(String[] args) {
        Logon a = new Logon("Hulk", "myLittlePony");
        System.out.println("logon a = " + a);
        try {
            ObjectOutputStream o = new ObjectOutputStream(new FileOutputStream(
                    "Logon.out"));
            o.writeObject(a);
            o.close();
            // Delay:
            int seconds = 5;
            long t = System.currentTimeMillis() + seconds * 1000;
            while (System.currentTimeMillis() < t)
                ;
            // Now get them back:
            ObjectInputStream in = new ObjectInputStream(new FileInputStream(
                    "Logon.out"));
            System.out.println();
            System.out.println("Recovering object at " + new Date());
            a = (Logon) in.readObject();
            System.out.println("logon a = " + a);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
} // /:~

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章