| Author |
advantage of serialization over i/o classes
|
Ritesh raushan
Ranch Hand
Joined: Aug 29, 2012
Posts: 98
|
|
what's the problem in i/o classes to save the state of object.what's the advantage of Serialization over i/o classes.
|
 |
Jeff Verdegan
Bartender
Joined: Jan 03, 2004
Posts: 5893
|
|
I don't understand the question. Serialization uses I/O classes. Why do you think there's a problem or an advantage or a "one vs. the other" situation?
|
 |
Seetharaman Venkatasamy
Ranch Hand
Joined: Jan 28, 2008
Posts: 5575
|
|
|
serialization performs deep copy by default. if you wish to go with your own then you need to take care all of this.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32708
|
|
But serialisation can impose a severe performance overhead on copying objects.
You ought not to think about serialisation versus I/O. Serialisation is one way to make an object suitable for I/O.
|
 |
 |
|
|
subject: advantage of serialization over i/o classes
|
|
|