View Single Post
  #1 (permalink)  
Old 11-06-2007, 09:29 PM
javaplus javaplus is offline
Member
 
Join Date: Nov 2007
Posts: 97
javaplus is on a distinguished road
Serializing Arrays
We can serialize objects of classes which implement Serializable interface.

Code:
import java.io.Serializable; public class MyClass implements Serializable{ ... }
I also understand that we can serialize Vectors as they also implement Serializable interface. Can we serialize arrays? If yes, then of which type?

Thanks in advance.
Reply With Quote
Sponsored Links