⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 thissample.java

📁 JAVA培训用实用代码
💻 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 + -