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中文网其他相关文章!

本文讨论了使用Maven和Gradle进行Java项目管理,构建自动化和依赖性解决方案,以比较其方法和优化策略。

本文使用Maven和Gradle之类的工具讨论了具有适当的版本控制和依赖关系管理的自定义Java库(JAR文件)的创建和使用。

本文讨论了使用咖啡因和Guava缓存在Java中实施多层缓存以提高应用程序性能。它涵盖设置,集成和绩效优势,以及配置和驱逐政策管理最佳PRA

本文讨论了使用JPA进行对象相关映射,并具有高级功能,例如缓存和懒惰加载。它涵盖了设置,实体映射和优化性能的最佳实践,同时突出潜在的陷阱。[159个字符]

Java的类上载涉及使用带有引导,扩展程序和应用程序类负载器的分层系统加载,链接和初始化类。父代授权模型确保首先加载核心类别,从而影响自定义类LOA

本文解释了用于构建分布式应用程序的Java的远程方法调用(RMI)。 它详细介绍了接口定义,实现,注册表设置和客户端调用,以解决网络问题和安全性等挑战。

本文详细介绍了用于网络通信的Java的套接字API,涵盖了客户服务器设置,数据处理和关键考虑因素,例如资源管理,错误处理和安全性。 它还探索了性能优化技术,我

本文详细介绍了创建自定义Java网络协议。 它涵盖协议定义(数据结构,框架,错误处理,版本控制),实现(使用插座),数据序列化和最佳实践(效率,安全性,维护


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

WebStorm Mac版
好用的JavaScript开发工具

DVWA
Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中

SublimeText3 Linux新版
SublimeText3 Linux最新版

安全考试浏览器
Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。