What exactly happens when an object is serialized

HI When an object (having auxiliary objects) is serialized using a BinaryFormatter, what exactly happens? How are object data stored? How are strings used to match objects? I want to know the format of a serialized stream. please help me..

+3
source share
2 answers

There is a reverse description here .

+2
source

There is content that I read at the beginning of Java: Objects on the heap have states, the value of the instance of the objects is variable. These values ​​make one instance of the class different from another instance of the same class.

, ()

0

Source: https://habr.com/ru/post/1736656/


All Articles