About 50 results
Open links in new tab
  1. What is deserialize and serialize in JSON? - Stack Overflow

    Jul 23, 2010 · Serialize and Deserialize In the context of data storage, serialization (or serialisation) is the process of translating data structures or object state into a format that can be stored (for …

  2. java - What is object serialization? - Stack Overflow

    The ObjectOutputStream is constructed to serialize the object. Deserializing an Object in java The opposite operation of the serialization is called deserialization i.e. to extract the data from a series of …

  3. language agnostic - What is Serialization? - Stack Overflow

    Mar 11, 2009 · I am getting started with Object-Oriented Programming (OOP) and would like to know: What is the meaning of serialization in OOP parlance?

  4. jQuery: serialize() form and other parameters - Stack Overflow

    May 1, 2012 · You can create an auxiliar form using jQuery with the content of another form and then add thath form other params so you only have to serialize it in the ajax call.

  5. How do you serialize an object in C++? - Stack Overflow

    Feb 7, 2009 · You cannot serialize pointer, you should stop using them in objects. Instead create object pools. This object pool is basically a dynamic array which contains "boxes". These boxes have a …

  6. What is [Serializable] and when should I use it? - Stack Overflow

    I found out that some classes use the [Serializable] attribute. What is it? When should I use it? What kinds of benefits will I get?

  7. jQuery serialize and unserialize - Stack Overflow

    Jun 23, 2010 · I want to serialize and un-serialize a form with jQuery. How can I get all attributes of all elements in a serialized way?

  8. java - What does Serializable mean? - Stack Overflow

    Aug 7, 2010 · To serialize an object means to convert its state to a byte stream so that the byte stream can be reverted back into a copy of the object. A Java object is serializable if its class or any of its …

  9. $ (this).serialize () -- How to add a value? - Stack Overflow

    But that didn't post correctly. Any ideas on how you can add an item to the serialize string? This is a global page variable that isn't form specific.

  10. What are object serialization and deserialization? - Stack Overflow

    Sep 1, 2009 · 2. What exactly happens when serialize an object? 3. What are we gaining when serialize an object? 4. Why don't you store an object in memory instead of Serialized data? Exactly, what it is …