systemconstants.java

来自「关于JAVA的代码连接数据库」· Java 代码 · 共 23 行

JAVA
23
字号
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 + =
减小字号Ctrl + -
显示快捷键?