public class Foo implements java.io.Serializable { private int v1; private static double v2; private Loan v3 = new Loan(); }
Options:
Then how is transient in this case, helping us to serialize foo?
Because it allows you to serialize the rest of Foo, the other members that are serializable.