標題:
static 關鍵字 (一)
[打印本頁]
作者:
tonyh
時間:
2015-3-28 14:47
標題:
static 關鍵字 (一)
本帖最後由 tonyh 於 2015-3-28 15:09 編輯
成員 (資料成員或方法成員) 在宣告時若使用關鍵字 static 修飾,則該成員變成屬於類別 (class) 擁有而非物件 (object) 擁有,因此我們若要在其他地方使用該成員時,不用建立實體物件,只需透過類別即可使用。譬如:Math.PI 即為靜態的資料成員,而Math.pow() 即為靜態的方法成員。
[attach]1192[/attach]
public class ch64
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,3.8);
Dog d2=new Dog("球球",1,2.5);
Cat c1=new Cat("咪咪",5,3.2);
d1.showProfile();
d2.showProfile();
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓.");
}
}
class Dog
{
static int sum=0;
String name;
int age;
double w;
Dog(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Cat
{
static int sum=0;
String name;
int age;
double w;
Cat(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
複製代碼
作者:
張瀚仁
時間:
2015-3-28 15:17
public class ch621
{
public static void main(String args[])
{
Dog d1=new Dog("你好",221,654);
Dog d2=new Dog("你好嗎",22121,6254154);
Cat c1=new Cat("再見",65,45);
d1.show();
d2.show();
c1.show();
System.out.println("狗"+Dog.sum+"隻,貓"+Cat.sum+"隻");
}
}
class Dog
{
String name;
int age;
double w;
static int sum=0;
Dog(String name,int age,double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void show()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Cat
{
String name;
int age;
double w;
static int sum=0;
Cat(String name,int age,double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void show()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
複製代碼
作者:
許逸群
時間:
2015-3-28 15:17
public class ch64
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,2.8);
Dog d2=new Dog("球球",1,2.5);
Cat c1=new Cat("咪咪",5,3.2);
d1.showProfile();
d2.showProfile();
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓.");
}
}
class Dog
{
static int sum=0;
String name;
int age;
double w;
Dog(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Cat
{
static int sum=0;
String name;
int age;
double w;
Cat(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
複製代碼
作者:
林以諾
時間:
2015-3-28 15:17
public class ch64
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,3.8);
Dog d2=new Dog("球球",1,2.5);
Cat c1=new Cat("咪咪",5,3.2);
d1.showProfile();
d2.showProfile();
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓.");
}
}
class Dog
{
static int sum=0;
String name;
int age;
double w;
Dog(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Cat
{
static int sum=0;
String name;
int age;
double w;
Cat(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
複製代碼
作者:
劉泳鱔
時間:
2015-6-16 16:13
public class Ch64 {
public static void main(String[] args)
{
Dog d1=new Dog("憨憨",2,3.8);
Dog d2=new Dog("球球",1,2.5);
Cat c1=new Cat("咪咪",5,3.2);
d1.showprofile();
d2.showprofile();
c1.showprofile();
System.out.println("總共有"+Dog.sum+"隻狗,有"+Cat.sum+"隻貓");
}
}
class Dog
{
static int sum=0;
String name;
int age;
double w;
Dog(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void showprofile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Cat
{
static int sum=0;
String name;
int age;
double w;
Cat(String name, int age, double w)
{
this.name=name;
this.age=age;
this.w=w;
sum++;
}
void showprofile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2