I have a question about Serialization. What are the conditions for an object to be serializable?
I know that all member variable in the object must be a primitive type, String or Serializable object.
Does the method's return value and argument need to be serializable too?
What if the body of a method uses an object that is not serializable?
Only the object in question is being serialized--the return values of methods, or objects used inside methods, have nothing to do with it.
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32631
4
posted
0
You will have to check in the Java Language Specification, but I think it is only the instance fields which have to be serializable. It is not a case of primitive, String or Serializable. A String is a Serializable. So is an array (provided its elements are Serlalizable). You can check any class in the API because it will say "implements Serializable" near the top of the page for that class.
Bill Lee
Greenhorn
Joined: Nov 25, 2006
Posts: 3
posted
0
Thanks for the help guys.
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32631
4
posted
0
You're welcome
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.