| Esempio |
|
public static class Object1 implements Externalizable{ private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); } } |
| Soluzione | |
Una classe che implementa Externalizable deve avere sempre un costruttore senza argomenti
|