Skip to content

Commit b70eff9

Browse files
authored
Update SerializeISA.java
1 parent d4093be commit b70eff9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

SerializeISA.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ class Person implements Serializable{
77
this.name = name;
88
}
99
}
10+
11+
1012
class Student extends Person{
1113
String course;
1214
int fee;
@@ -15,7 +17,8 @@ public Student(int id, String name, String course, int fee) {
1517
this.course=course;
1618
this.fee=fee;
1719
}
18-
}
20+
}
21+
1922
public class SerializeISA
2023
{
2124
public static void main(String args[])

0 commit comments

Comments
 (0)