楼上的经典。。。
pubilc class life2007{
String Year="unhappy";//To keep compiler happy!
String Month="unhappy";//To keep compiler happy!
String Day="unhappy";//To keep compiler happy!
public void life2007(String Year,String Month,String Day){
this.Year=Year;
this.Month=Month;
this.Day=Day;
}
public void main(String[] args){
life2007 justnow=new life2007("unhappy","unhappy","unhappy")
justnow.Year="happy";
justnow.Month="happy";
justnow.Day="happy";
System.out.println("This year is full of"+justnow.Year);
System.out.println("This month is full of"+justnow.Month);
System.out.println("Today is full of"+justnow.Day);
}
} |