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

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

    Aug 7, 2010 · 1 Serializable is an interface called marker-interface just to tell Java I want to make serialization and de-serialization using this Java calss. Serialization: Write to the file or any …

  3. serialization - What is Serializable in Java? - Stack Overflow

    serializable is a special interface that specifies that class is serialiazable. It's special in that unlike a normal interface it does not define any methods that must be implemented: it is simply …

  4. When should we implement Serializable interface? - Stack Overflow

    55 Implement the Serializable interface when you want to be able to convert an instance of a class into a series of bytes or when you think that a Serializable object might reference an …

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

    In Java, the serialization mechanism is built into the platform, but you need to implement the Serializable interface to make an object serializable. You can also prevent some data in your …

  6. Isolation Level - Serializable. When should I use this?

    Aug 12, 2010 · The SERIALIZABLE isolation level is the highest isolation level based on pessimistic concurrency control where transactions are completely isolated from one another. …

  7. serialization - What is the difference between Serializable and ...

    May 3, 2009 · Basically, Serializable is a marker interface that implies that a class is safe for serialization and the JVM determines how it is serialized. Externalizable contains 2 methods, …

  8. Android: Difference between Parcelable and Serializable?

    224 Serializable is a standard Java interface. You simply mark a class Serializable by implementing the interface, and Java will automatically serialize it in certain situations. …

  9. What is a serialVersionUID and why should I use it?

    Nov 13, 2008 · Eclipse issues warnings when a serialVersionUID is missing. The serializable class Foo does not declare a static final serialVersionUID field of type long What is …

  10. Why Java needs Serializable interface? - Stack Overflow

    Jul 8, 2016 · The question is: since Serializable is an empty interface and Java provides robust serialization once you add implements Serializable - why didn't they make everything …