本帖最後由 許婷芳 於 2019-12-14 14:21 編輯
成員 (資料成員或方法成員) 在宣告時若使用關鍵字 static 修飾,則該成員變成屬於類別 (class) 擁有而非物件 (object) 擁有,因此我們若要在其他地方使用該成員時,不用建立實體物件,只需透過類別即可使用。
譬如:Math.PI 即為靜態的資料成員,而Math.pow() 即為靜態的方法成員。
- public class ch01
- {
- public static void main(String[] args)
- {
- Dog d1=new Dog("憨憨",2,1.3);
- Dog d2=new Dog("球球",1,1.2);
- d1.showProfile();
- d2.showProfile();
- Cat c1=new Cat("咪咪",3,1.5);
- c1.showProfile();
- System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓.");
- }
- }
複製代碼本帖隱藏的內容需要回復才可以瀏覽
本帖隱藏的內容需要回復才可以瀏覽 |