Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/java/io/Serializable/parents/EvolvedClass.java
38821 views
1
/*
2
* Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/*
25
* @bug 4186885
26
*/
27
28
import java.io.*;
29
30
public class EvolvedClass {
31
public static void main(String args[]) throws Exception{
32
ASubClass corg = new ASubClass(1, "SerializedByEvolvedClass");
33
ASubClass cnew = null;
34
35
// Deserialize in to new class object
36
FileInputStream fi = new FileInputStream("parents.ser");
37
try {
38
ObjectInputStream si = new ObjectInputStream(fi);
39
cnew = (ASubClass) si.readObject();
40
} finally {
41
fi.close();
42
}
43
44
System.out.println("Printing the deserialized class: ");
45
System.out.println();
46
System.out.println(cnew);
47
}
48
}
49
50
51
/* During deserialization, the no-arg constructor of a serializable base class
52
* must not be invoked.
53
*/
54
class ASuperClass implements Serializable {
55
String name;
56
57
ASuperClass() {
58
/*
59
* This method is not to be executed during deserialization for this
60
* example. Must call no-arg constructor of class Object which is the
61
* base class for ASuperClass.
62
*/
63
throw new Error("ASuperClass: Wrong no-arg constructor invoked");
64
}
65
66
ASuperClass(String name) {
67
this.name = new String(name);
68
}
69
70
public String toString() {
71
return("Name: " + name);
72
}
73
}
74
75
class ASubClass extends ASuperClass implements Serializable {
76
int num;
77
78
private static final long serialVersionUID =6341246181948372513L;
79
ASubClass(int num, String name) {
80
super(name);
81
this.num = num;
82
}
83
84
public String toString() {
85
return (super.toString() + "\nNum: " + num);
86
}
87
}
88
89