(String[] args)
| 10 | |
| 11 | public class ThawAlien { |
| 12 | public static void |
| 13 | main(String[] args) throws Exception { |
| 14 | ObjectInputStream in = new ObjectInputStream( |
| 15 | new FileInputStream(new File("X.file"))); |
| 16 | Object mystery = in.readObject(); |
| 17 | System.out.println(mystery.getClass()); |
| 18 | } |
| 19 | } |
| 20 | /* Output: |
| 21 | class Alien |
nothing calls this directly
no test coverage detected