Java transient is a modifier keyword that is used to mark a variable whose value is not to be serialized during Serialization. If we do not want to save the value of a specific variable during the serialisation, then we can mark a variable as transient by using the transient keyword. As the name itself, transient indicates that it last for a short time or not permanent. When the JVM encounters the transient variable, it ignores the variable’s original value and saves it by its default data type value.
Start Your Free Software Development Course
Web development, programming languages, Software testing & others
Syntax:
The following is the declaration transient keyword.
transient private <member variable>;</member>
or
private transient <member variable>;</member>
AS above mentioned, we can see that the data member defined as transient will not be serialized because it is marked by transient keyword for not to be serialized. We can define a transient data member in two ways, the same as above in the syntax.
Note that Serialization is a process that converts the state of an object into a byte stream. During serialization, if we do not want to save a variable’s value in the file, we can declare it as transient.
Examples of Transient Keyword in Java
Next, we write the java code to understand the transient keyword more clearly with the following example where we will use a transient keyword to define a member variable of a class and make this class subclass of Serializable to perform the serialization and deserialization, as below.
Example #1
Code:
//package demo; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; class Employee implements Serializable{ private String name; private String eid; private int age; //transient variable not serialized private transient int projid = 104; public Employee( String name, String eid, int age, int projid) { this.age = age; this.name = name; this.eid = eid; this.projid = projid; } @Override public String toString() { return "Employee ( name=" + name + ", eid=" + eid + ", age=" + age + ", projid=" + projid + ')'; } } public class Demo { public static void main(String[] args) { // create Employee class object which is Serializable Employee e1 = new Employee( "John", "e106", 26, 104); System.out.println("Employee object Before Serialization is : " + e1); try { FileOutputStream fw = new FileOutputStream("D:\\data.txt"); ObjectOutputStream ow = new ObjectOutputStream(fw); ow.writeObject(e1); System.out.println("Employee is successfully Serialized "); // code for deserialization FileInputStream fr = new FileInputStream("D:\\data.txt"); ObjectInputStream or = new ObjectInputStream(fr); Employee de1 = (Employee) or.readObject(); System.out.println("Employee object successfully created from Serialized data."); System.out.println("Employee object after deseriazliation is : " + de1); } catch (Exception e) { e.printStackTrace(); } } }
Output:
Code Explanation: As in the above code, the employee class has created, and the project id that is projid data member of the employee class is defined as transient, so the value projid will not be serialized and while writing an employee object to the file will not save the value of a projid in the file. And later in the code, an employee object is read back from that file and deserialize an object; we can see in the output that the printing projid of the employee object is 0, which is the default value for the transient variable projid because it is serialized.
Example #2
Next, we write the java code to understand the transient keyword and show that the transient keyword does not impact the static and final variable as transient.
Code:
//package demo; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; class Employee implements Serializable{ private String name; // Use of transient has no impact on static private static String eid; // Use of transient has no impact on final private final int age; //transient variable not serialized private transient int projid = 104; public Employee( String name, String eid, int age, int projid) { this.age = age; this.name = name; this.eid = eid; this.projid = projid; } @Override public String toString() { return "Employee ( name=" + name + ", eid=" + eid + ", age=" + age + ", projid=" + projid + ')'; } } public class Demo { public static void main(String[] args) { // create Employee class object which is Serializable Employee e1 = new Employee( "John", "e106", 26, 104); System.out.println("Employee object Before Serialization is : " + e1); try { FileOutputStream fw = new FileOutputStream("D:\\data.txt"); ObjectOutputStream ow = new ObjectOutputStream(fw); ow.writeObject(e1); // code for deserialization FileInputStream fr = new FileInputStream("D:\\data.txt"); ObjectInputStream or = new ObjectInputStream(fr); Employee de1 = (Employee) or.readObject(); System.out.println("Employee object after deseriazliation is : " + de1); } catch (Exception e) { e.printStackTrace(); } } }
Output:
Code Explanation: As in the above code, the employee class has created, and the eid data member is declared as static and transient, the age declare as final and transient, and porjid of the employee class is declared as only transient, so only the value of projid will not be serialized and while writing an employee object to the file, but others data member value will be serialized. we can see in the output that after desterilize an object is printing, the projid of the employee object is 0, and all other data members’ values are saved because they are not serialized.
Conclusion
As simple as, the name transient meaning is lasting for a short time or not permanent the same way transient keyword is used in java. The transient is a modifier keyword that is used to mark a variable whose value is not to be serialized during Serialization.
以上是Java 瞬態的詳細內容。更多資訊請關注PHP中文網其他相關文章!

JavadevelovermentIrelyPlatForm-DeTueTososeVeralFactors.1)JVMVariationsAffectPerformanceNandBehaviorAcroSsdifferentos.2)Nativelibrariesviajnijniiniininiinniinindrododerplatefform.3)

Java代碼在不同平台上運行時會有性能差異。 1)JVM的實現和優化策略不同,如OracleJDK和OpenJDK。 2)操作系統的特性,如內存管理和線程調度,也會影響性能。 3)可以通過選擇合適的JVM、調整JVM參數和代碼優化來提升性能。

Java'splatFormentenceHaslimitations不包括PerformanceOverhead,versionCompatibilityIsissues,挑戰WithnativelibraryIntegration,Platform-SpecificFeatures,andjvminstallation/jvminstallation/jvmintenance/jeartenance.therefactorscomplicatorscomplicatethe“ writeOnce”

PlatformIndependendecealLowsProgramStormonanyPlograwsStormanyPlatFormWithOutModification,而LileCross-PlatFormDevelopmentRequiredquiresMomePlatform-specificAdjustments.platFormIndependence,EneblesuniveByjava,EnablesuniversUniversAleversalexecutionbutmayCotutionButMayComproMisePerformance.cross.cross.cross-platformd

JITcompilationinJavaenhancesperformancewhilemaintainingplatformindependence.1)Itdynamicallytranslatesbytecodeintonativemachinecodeatruntime,optimizingfrequentlyusedcode.2)TheJVMremainsplatform-independent,allowingthesameJavaapplicationtorunondifferen

javaispopularforcross-platformdesktopapplicationsduetoits“ writeonce,runany where”哲學。 1)itusesbytiesebyTecodeThatrunsonAnyJvm-備用Platform.2)librarieslikeslikeslikeswingingandjavafxhelpcreatenative-lookingenative-lookinguisis.3)

在Java中編寫平台特定代碼的原因包括訪問特定操作系統功能、與特定硬件交互和優化性能。 1)使用JNA或JNI訪問Windows註冊表;2)通過JNI與Linux特定硬件驅動程序交互;3)通過JNI使用Metal優化macOS上的遊戲性能。儘管如此,編寫平台特定代碼會影響代碼的可移植性、增加複雜性、可能帶來性能開銷和安全風險。

Java將通過雲原生應用、多平台部署和跨語言互操作進一步提昇平台獨立性。 1)雲原生應用將使用GraalVM和Quarkus提升啟動速度。 2)Java將擴展到嵌入式設備、移動設備和量子計算機。 3)通過GraalVM,Java將與Python、JavaScript等語言無縫集成,增強跨語言互操作性。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

DVWA
Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

WebStorm Mac版
好用的JavaScript開發工具

Atom編輯器mac版下載
最受歡迎的的開源編輯器

EditPlus 中文破解版
體積小,語法高亮,不支援程式碼提示功能

MinGW - Minimalist GNU for Windows
這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。