[JAVA] static-靜態類別變數
class Car{ public static void show(){ System.out.println("static show"); } } class Sample4{ public static void main(String[] args){ Car.show(); Car car1=new Car(); car1.show(); } }
[環島] 二部曲-西部環島時間表
日期 | 地點 | 住宿 |
2月23日 | 竹北 | 花漾時尚旅 館 |
2月24日 | 苗栗 | 三統飯店 |
2月25日 | 台中 | 東海藍 |
2月26日 | 嘉義 | 義興旅社 |
2月27日 | 台南 | 旅思館青年 旅館 |
2月28日 | 高雄 | 高鐵(左營至台北) |
[JAVA] 建構子
class Car{
private int num;
private double gas;
public Car(){
this(1,2);
System.out.println("建構子1");
}
public Car(int a,int b){
System.out.println("建構子2");
}
}
class Sample3{
public static void main(String[] args){
Car car1=new Car();
}
}
private int num;
private double gas;
public Car(){
this(1,2);
System.out.println("建構子1");
}
public Car(int a,int b){
System.out.println("建構子2");
}
}
class Sample3{
public static void main(String[] args){
Car car1=new Car();
}
}
訂閱:
文章 (Atom)