这是《Java2程序设计实用教程(第2版)》教材中附带的例题源代码。

源代码在线查看: student.java

软件大小: 798 K
上传用户: princessmeng
关键词: Java2 程序设计 实用教程 教材
下载地址: 免注册下载 普通下载 VIP

相关代码

				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;
				    }
				}
							

相关资源