相关代码 |
|
import java.io.*; public class Student implements java.io.Serializable //序列化 { private int number; private String name; private static int count=0; public Student(String name) { this.count++; this.number = this.count; this.name = name; } public String toString() { return this.number+" "+this.name; } }
相关资源 |
|