?? courseinfo.java~2~
字號:
package lk;/** * <p>Title: </p> * * <p>Description: </p> * * <p>Copyright: Copyright (c) 2008</p> * * <p>Company: </p> * * @author not attributable * @version 1.0 */public class CourseInfo { public String id; public String courseName; public int theoryhours; public int operatehours; public int onlinehours; public int guidancehours; public String toString() { return courseName; } public String getId() { return id; } public String getName() { return courseName; } public int gettheoryhours() { return theoryhours; } public int getoperatehours() { return operatehours; } public int getonlinehours() { return onlinehours; } public int getguidancehours() { return guidancehours; } public CourseInfo(String courseName) { this.courseName = courseName; } public CourseInfo(String courseName, int theoryhours, int operatehours, int onlinehours, int guidancehours) { this.courseName = courseName; this.theoryhours = theoryhours; this.operatehours = operatehours; this.onlinehours = onlinehours; this.guidancehours = guidancehours; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -