溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

transient關(guān)鍵字有什么用

發(fā)布時(shí)間:2020-12-25 10:15:22 來源:億速云 閱讀:455 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關(guān)transient關(guān)鍵字有什么用的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

transient關(guān)鍵字的作用是:被transient修飾的變量不參與序列化和反序列化。當(dāng)一個(gè)對象被序列化的時(shí)候,transient型變量的值不包括在序列化的表示中,然而非transient型的變量是被包括進(jìn)去的。

Java的serialization提供了一種持久化對象實(shí)例的機(jī)制。當(dāng)持久化對象時(shí),可能有一個(gè)特殊的對象數(shù)據(jù)成員,我們不想用serialization機(jī)制來保存它。

為了在一個(gè)特定對象的一個(gè)域上關(guān)閉serialization,可以在這個(gè)域前加上關(guān)鍵字transient。

當(dāng)一個(gè)對象被序列化的時(shí)候,transient型變量的值不包括在序列化的表示中,然而非transient型的變量是被包括進(jìn)去的。

簡而言之,被transient修飾的變量不參與序列化和反序列化。

接下來用代碼來證明一下。

新建一個(gè)Student類實(shí)現(xiàn)Serializable 接口,并重寫其toString方法便于觀察結(jié)果。

一個(gè)age屬性不被transient修飾,一個(gè)name屬性被transient修飾。

public class Student implements Serializable {
    private int age;
    private transient String name;

    public Student() {
    }

    public Student(int age, String name) {
        this.age = age;
        this.name = name;
    }

    @Override
    public String toString() {
        return "Student{" + "age=" + age + ", name='" + name + '\'' + '}';
    }

}

然后在TransientTest類里邊測試。

PS:

為了代碼簡潔這里的IO操作沒有進(jìn)行try catch操作而是直接拋出了。

public class TestTransient {

    public static void main(String[] args) throws Exception {
        // 實(shí)例化一個(gè)Student對象.
        Student student = new Student(15, "HuaGe");
        System.out.println(student);

        // 將student對象寫入磁盤文件(序列化)
        ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("student.txt"));
        oos.writeObject(student);
        oos.close();

        // 從磁盤文件讀取student對象(反序列化)
        ObjectInputStream ois = new ObjectInputStream(new FileInputStream("student.txt"));
        student = (Student) ois.readObject();
        System.out.println(student);
    }
}

運(yùn)行main方法,觀察控制臺(tái)打印信息。

transient關(guān)鍵字有什么用

發(fā)現(xiàn)經(jīng)過了序列化和反序列化后,name屬性從HuaGe變?yōu)榱薾ull.

這就說明了被transient修飾的變量不參與序列化和反序列化。

那有沒有例外吶?

我們知道,java中有兩種序列化的方式。

1. 實(shí)現(xiàn)Serializable接口。

2. 實(shí)現(xiàn)Externalizable接口。

Externalizable接口是Serializable接口的子類

源碼如下

public interface Externalizable extends java.io.Serializable {
 
    void writeExternal(ObjectOutput out) throws IOException;

   
    void readExternal(ObjectInput in) throws IOException, ClassNotFoundException;
}

這個(gè)接口的兩個(gè)方法可以指定對類中的哪些屬性進(jìn)行序列化。

使用這個(gè)接口時(shí),無論屬性有沒有被transient修飾,

默認(rèn)不對任何屬性進(jìn)行序列化。所以實(shí)現(xiàn)了Externalizable接口的類

一般不再使用transient修飾屬性。

總結(jié):

1. 被transient修飾的變量不參與序列化和反序列化

2. transient一般在實(shí)現(xiàn)了Serializable接口的類中使用。

感謝各位的閱讀!關(guān)于“transient關(guān)鍵字有什么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI