Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes serialization Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "serialization" Watch "serialization" New topic
Author

serialization

vini singh
Greenhorn

Joined: Dec 04, 2008
Posts: 18

class TestSer
{
public static void main(String[] m)
{
SpecialSerial s=new SpecialSerial();
try{ObjectOutputStream os=new ObjectOutputStream(new FileOutputStream("myFile"));
os.writeObject(s);
os.close();
System.out.println(++s.z + " ");
ObjectInputStream is=new ObjectInputStream(new FileInputStream("myFile");
SpecialSerial s2=(SpecialSerial)is.readObject();
is.close();
System.out.println(s2.y+ " "+s2.z);
}catch(Exception x){System.out.println("exec");}
}
}
}
class SpecialSerial implements Serializable
{
transient int y=7;
static int z=9;

}

output is:10 0 10 how as we know transient and static dont serialize therefore i think it should be 10 0 0


}
}
Rafael Angarita
Ranch Hand

Joined: Jan 09, 2009
Posts: 67
I think that the static member is not being serialized. The deserialized object doesn't have a "z" value. You can see it debugging the code.

But, since "z" is static and belongs to the class (not to the instances), its value is always there regardless new instances of the class;

Am I right?


Rafael Angarita.
SCJP 6.
Punit Singh
Ranch Hand

Joined: Oct 16, 2008
Posts: 952
Yes you are right Rafael, static variable is not being written on file, not being read from file, it will not loose its value as it is class variable, it will not depend on instance objects being serialized here.


SCJP 6
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: serialization
 
Similar Threads
what happens when try to serialize static variable
Serialization SCJP KS && BB
Serialization
Why static variable serialized here?
question about serializable