📄 systemconstants.java
字号:
package GradeManagement.util;
import GradeManagement.model.Course;
public interface SystemConstants {
public static final int COLLEGESTUDENT = 0; // 专科生
public static final int UNDERGRADUATE = 1; // 本科生
public static final String[] STUDENTTYPE = {"COLLEGESTUDENT",
"UNDERGRADUATE"};
// 专科生课程
public static final Course [] COLSCOURSES = {new Course(1, "英语"),
new Course(2,"C语言"),
new Course(3,"数据结构")};
// 本科生课程
public static final Course [] UNDGRSCOURSES = {new Course(1, "英语"),
new Course(2, "Java语言"),
new Course(3, "软件工程")};
public static String SEPLINE = "___________________________________" +
"____________________________________" +
"____________________________________" + "\n";
} // 类SystemConstants结束
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -