?? thissample.java
字號:
public class ThisSample{
private int year;
private int month;
private int day;
public ThisSample(int year,int month,int day) {
this.year = year;
this.month = month;
this.day = day;
}
public void setYear(int year) { this.year = year; }
public void setMonth(int m) { month = m; }
public void setDay(int d) { day = d; }
public int getYear() { return year; }
public int getMonth() { return month; }
public int getDay() { return day; }
public void setting(){
this.setYear(2001);
this.setMonth(9);
setDay(11); //?this.setDay(11);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -