-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWorm.java
More file actions
102 lines (86 loc) · 2.67 KB
/
Worm.java
File metadata and controls
102 lines (86 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package io;
import java.io.*;
import java.util.zip.*;
import java.util.*;
/**
* RUN:
* javac io/Worm.java && java io.Worm
*
* OUTPUT:
* Construcot Worm: 6
* Construcot Worm: 5
* Construcot Worm: 4
* Construcot Worm: 3
* Construcot Worm: 2
* Construcot Worm: 1
* w = :a(853):b(119):c(802):d(788):e(199):f(881)
* Worm storage
* w2 = :a(853):b(119):c(802):d(788):e(199):f(881)
* Memory of object Worm
* w3 = :a(853):b(119):c(802):d(788):e(199):f(881)
*/
public class Worm implements Serializable {
private static Random rand = new Random(47);
private Data[] d = {
new Data(rand.nextInt(10)),
new Data(rand.nextInt(10)),
new Data(rand.nextInt(10))
};
private Worm next;
private char c;
public Worm(int i, char x) {
System.out.println("Construcot Worm: " + i);
c = x;
if (--i > 0) {
next = new Worm(i, (char)(x+1));
}
}
public Worm() {
System.out.println("Default constructor");
}
public String toString() {
StringBuilder result = new StringBuilder(":");
result.append(c);
result.append("(");
for (Data dat : d) {
result.append(dat);
}
result.append(")");
if (next != null) {
result.append(next);
}
return result.toString();
}
public static void main(String[] args) throws ClassNotFoundException, IOException {
Worm w = new Worm(6, 'a');
System.out.println("w = " + w);
ObjectOutputStream out = new ObjectOutputStream(
new FileOutputStream("worm.out")
);
out.writeObject("Worm storage\n");
out.writeObject(w);
out.close();
ObjectInputStream in = new ObjectInputStream(
new FileInputStream("worm.out")
);
String s = (String)in.readObject();
Worm w2 = (Worm)in.readObject();
System.out.println(s + "w2 = " + w2);
ByteArrayOutputStream bout = new ByteArrayOutputStream();
ObjectOutputStream out2 = new ObjectOutputStream(bout);
out2.writeObject("Memory of object Worm\n");
out2.writeObject(w);
out2.flush();
ObjectInputStream in2 = new ObjectInputStream(
new ByteArrayInputStream(bout.toByteArray())
);
s = (String)in2.readObject();
Worm w3 = (Worm)in2.readObject();
System.out.println(s +"w3 = "+w3);
}
}
class Data implements Serializable {
private int n;
public Data(int n) { this.n = n; }
public String toString() { return Integer.toString(n); }
}