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

    Jul 23, 2010 · JSON is a format that encodes objects in a string. Serialization means to convert an object into that string, and deserialization is its inverse operation (convert string -> object). When …

  2. 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?

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

    This process of serializing an object is also called deflating or marshalling an object. The object to be serialized must implement java.io.Serializable Interface. Default serialization mechanism for an …

  4. What is a "serialized" object in programming? - Stack Overflow

    The serialized format contains the object's state information. Deserialization is the process of using the serialized state to reconstruct the object from the serialized state to its original state.

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

    Nov 27, 2018 · Hi, I have following questions: 1. Why do we need to serialize and object? 2. What exactly happens when serialize an object? 3. What are we gaining when serialize an object? 4. Why …

  6. An honest conversation about serialized cards. : r/mtgfinance - Reddit

    With serialized cards you are dealing with relatively low supply, and sellers know this. Yes there are some cards that are struggling to sell, but are also very unique, like the Praetors (new printings with …

  7. Are static variables serialized in Serialization process

    Jun 12, 2012 · I'm stumbled upon understanding java serialization. I have read in many documents and books that static and transient variables cannot be serialized in Java. We declare a serialVersionUid …

  8. LOTR Serialized Card Odds (Collector vs Special Edition) - Reddit

    Nov 9, 2023 · Seeing all the LOTR serialized cards pop up on Reddit made me wonder how much easier they were to get in the Special Edition Collector Boosters vs the original Collector Boosters.

  9. When is it appropriate to use “ [SerializedField] private ... - Reddit

    Nov 20, 2022 · A Serialized field is a private field that can be edited in the inspector. You can use this when you want a designer to be able to edit the field from the inspector while still preventing other …

  10. Why are properties without a setter not serialized

    Jul 9, 2014 · 119 I have a serializable class and one of the properties in my class generates a Guid in the getter. The property implements no setter and is ignores during serialization. Why is that and do I …