About 55,400,000 results
Open links in new tab
  1. 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 …

  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. 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. What are object serialization and deserialization? - Stack Overflow

    Sep 1, 2009 · 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 don't …

  5. What is the purpose of Serialization in Java? - Stack Overflow

    Feb 9, 2010 · 3 The most obvious is that you can transmit the serialized class over a network, and the recepient can construct a duplicate of the original instance. Likewise, you can save a serialized …

  6. 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 …

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

    Aug 7, 2010 · @skaffman Here's what it says for the class Serializable: Serializability of a class is enabled by the class implementing the java.io.Serializable interface. Classes that do not implement …

  8. 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.

  9. dataframe - Pyspark: Serialized task exceeds max allowed. Consider ...

    Pyspark: Serialized task exceeds max allowed. Consider increasing spark.rpc.message.maxSize or using broadcast variables for large values Asked 6 years, 11 months ago Modified 1 year, 10 months …

  10. How can i serialize property of c# in Unity - Stack Overflow

    Dec 14, 2022 · I think it's inefficient to implement these two lines of variables. [SerializeField] private int i; public int I => i; So I would like to express this in one line, but this is not serialized in...