开发者

What is the act of creating objects from XML data called?

开发者 https://www.devze.com 2023-01-09 09:56 出处:网络
In the context of loading an XML file, what\'s开发者_运维知识库 a good name for the step in which you create internal data structures (be they objects, structs, or whatever) to hold the data in memory

In the context of loading an XML file, what's开发者_运维知识库 a good name for the step in which you create internal data structures (be they objects, structs, or whatever) to hold the data in memory? What do you usually call the other steps?

  1. LOAD, OPEN, or READ the xml, by opening a file.
  2. PARSE the xml, with some XML parser.
  3. ??? the xml, creating data structures.

Options that have come to mind for step 3 are: handle, create_foobars, create_foobars_from_xml, or even read, load, or parse.

One other option that comes to mind is to have an object's constructor take an xml entity, but I'm not fond of coupling the objects to the xml schema like that.


Deserialization is the correct term for the "???" part of your question. If you want to convert the object back to XML, then that would be (you guessed it) serialization.


Deserialization or unmarshalling.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号