what is serialization all about?

前端 未结 5 1966
梦如初夏
梦如初夏 2020-12-30 14:01

Where exactly does serialization comes into the picture? I read about serializtion on the \'net and I have come to know that

it is an interface that

5条回答
  •  臣服心动
    2020-12-30 14:23

    for example, when you want to send a object to some url, you might decide to send it in xml format. The process of converting from the in-memory object to (in this case) xml, is called serialization. Converting from xml to a in-memory is called de-serialization.

提交回复
热议问题