標題:
【068】static 關鍵字 (一)
[打印本頁]
作者:
tonyh
時間:
2023-5-17 16:19
標題:
【068】static 關鍵字 (一)
成員 (資料成員或方法成員) 在宣告時若使用關鍵字 static 修飾,則該成員變成屬於類別 (class) 擁有而非物件 (object) 擁有,因此我們若要在其他地方使用該成員時,不用建立實體物件,只需透過類別即可使用。譬如:Math.PI 即為靜態的資料成員,而Math.pow() 即為靜態的方法成員。
public class Ch62
{
public static void main(String[] args)
{
Dog d1=new Dog("憨憨",2,3.8);
Dog d2=new Dog("球球",1,2.5);
d1.showProfile();
d2.showProfile();
Cat c1=new Cat("咪咪",3,3.2);
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓.");
}
}
class Dog
{
static int sum=0;
String name;
int age;
double w;
Dog(String n, int a, double w)
{
sum++;
name=n;
age=a;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Cat
{
static int sum=0;
String name;
int age;
double w;
Cat(String n, int a, double w)
{
sum++;
name=n;
age=a;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
複製代碼
作者:
王捷恩
時間:
2023-5-17 16:34
public class A {
public static void main(String[] args) {
Dog d1=new Dog("憨憨",2,3.8);
Dog d2=new Dog("球球",1,2.5);
d1.showProfile();
d2.showProfile();
Cat c1=new Cat("咪咪",3,3.2);
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓.");
}
}
class Dog
{
static int sum=0;
String name;
int age;
double w;
Dog(String n, int a, double w)
{
sum++;
name=n;
age=a;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Cat
{
static int sum=0;
String name;
int age;
double w;
Cat(String n, int a, double w)
{
sum++;
name=n;
age=a;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2