student.java~4~

来自「学生成绩管理系统」· JAVA~4~ 代码 · 共 36 行

JAVA~4~
36
字号
package teamwork;

/**
 * <p>Title: teamwork</p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: </p>
 *
 * @author yeliang
 * @version 1.0
 */
public class student {

    String name;
    String id;
    String classNo;
    String sex;
    int tearms = 4;
    course[] inf_tearm = new course[tearms];

    public student() {
        name = null;
        id = null;
        classNo = null;
        sex = null;
        for(int i=0;i<4;i++) inf_tearm[i] = new course();
    }

    public static void main(String[] args) {
        //student student = new student();
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?