Java: What can and what can't be serialized?

前端 未结 9 1003
Happy的楠姐
Happy的楠姐 2020-12-25 11:48

If the Serializable interface is just a Marker-Interface that is used for passing some-sort of meta-data about classes in java - I\'m a bit confused:

After reading t

9条回答
  •  半阙折子戏
    2020-12-25 12:18

    You need to handle the serialization of your own Objects.

    Java will handle the primitive data types for you.

    More info: http://www.tutorialspoint.com/java/java_serialization.htm

提交回复
热议问题