MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / main

Method main

serialization/FreezeAlien.java:9–18  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

7
8public class FreezeAlien {
9 public static void
10 main(String[] args) throws Exception {
11 try(
12 ObjectOutputStream out = new ObjectOutputStream(
13 new FileOutputStream("X.file"));
14 ) {
15 Alien quellek = new Alien();
16 out.writeObject(quellek);
17 }
18 }
19}

Callers

nothing calls this directly

Calls 1

writeObjectMethod · 0.80

Tested by

no test coverage detected