What is object serialization?

前端 未结 14 2118
长发绾君心
长发绾君心 2020-11-21 23:23

What is meant by \"object serialization\"? Can you please explain it with some examples?

14条回答
  •  旧巷少年郎
    2020-11-22 00:21

    Serialization is the process of converting an object's state to bits so that it can be stored on a hard drive. When you deserialize the same object, it will retain its state later. It lets you recreate objects without having to save the objects' properties by hand.

    http://en.wikipedia.org/wiki/Serialization

提交回复
热议问题