---
title: "What is transient variable?"  
description: "What is transient variable?"  
author: "Amit Singh"  
published: 2011-05-07  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/852/what-is-transient-variable  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# What is transient variable?

Transient variable can't be serialize. For example if a variable is declared as transient in a Serializable class and the class is written to an ObjectStream, the value of the variable can't be written to the stream instead when the class is retrieved from the ObjectStream the value of the variable becomes null.

## Answers

### Answer by Amit Singh

Transient variable can't be serialize. For example if a variable is declared as transient in a Serializable class and the class is written to an ObjectStream, the value of the variable can't be written to the stream instead when the class is retrieved from the ObjectStream the value of the variable becomes null.


---

Original Source: https://www.mindstick.com/interview/852/what-is-transient-variable

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
