標題:
static 關鍵字 (一)
[打印本頁]
作者:
tonyh
時間:
2015-3-7 16:59
標題:
static 關鍵字 (一)
本帖最後由 tonyh 於 2015-3-7 17:57 編輯
成員 (資料成員或方法成員) 在宣告時若使用關鍵字 static 修飾,則該成員變成屬於類別 (class) 擁有而非物件 (object) 擁有,因此我們若要在其他地方使用該成員時,不用建立實體物件,只需透過類別即可使用。譬如:Math.PI 即為靜態的資料成員,而Math.pow() 即為靜態的方法成員。
[attach]1165[/attach]
public class ch63
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,3.8f);
Dog d2=new Dog("球球",1,2.5f);
Cat c1=new Cat("咪咪",5,3.2f);
d1.showProfile();
d2.showProfile();
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓.");
}
}
class Dog
{
static int sum=0;
String name;
int age;
float w;
Dog(String name, int age, float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Cat
{
static int sum=0;
String name;
int age;
float w;
Cat(String name, int age, float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
複製代碼
作者:
李允軒
時間:
2015-3-7 17:28
public class ch61
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,1.3f);
d1.showProfile();
Dog d2=new Dog("球球",1,1.2f);
d2.showProfile();
Cat c1=new Cat("咪咪",3,1.5f);
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓");
}
}
class Dog
{
static int sum=0;
String name;
int age;
float w;
Dog()
{
}
Dog(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Cat
{
static int sum=0;
String name;
int age;
float w;
Cat()
{
}
Cat(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
複製代碼
作者:
張郁庭
時間:
2015-3-7 17:30
public class ch63
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,1.3f);
Dog d2=new Dog("球球",1,1.2f);
Cat c1=new Cat("咪咪",3,1.5f);
d2.showProfile();
d1.showProfile();
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓");
}
}
class Dog
{
static int sum=0;
String name;
int age;
float w;
Dog()
{
}
Dog(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Cat
{
static int sum=0;
String name;
int age;
float w;
Cat()
{
}
Cat(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
複製代碼
作者:
林宇翔
時間:
2015-3-7 17:31
public class ch61
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,1.3f);
d1.showProfile();
Dog d2=new Dog("球球",1,1.2f);
d2.showProfile();
Cat c1=new Cat("咪咪",3,1.5f);
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓");
}
}
class Dog
{
static int sum=0;
String name;
int age;
float w;
Dog()
{
}
Dog(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Cat
{
static int sum=0;
String name;
int age;
float w;
Cat()
{
}
Cat(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
複製代碼
作者:
張峻瑋
時間:
2015-3-7 17:31
public class ch63
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,3.8f);
Dog d2=new Dog("球球",1,2.5f);
Cat c1=new Cat("咪咪",5,3.2f);
d1.showProfile();
d2.showProfile();
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓.");
}
}
class Dog
{
static int sum=0;
String name;
int age;
float w;
Dog()
{
}
Dog(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
class Cat
{
static int sum=0;
String name;
int age;
float w;
Cat()
{
}
Cat(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤.");
}
}
複製代碼
作者:
劉得恩
時間:
2015-3-7 17:31
public class ch63
{
public static void main(String[] args)
{
Dog d[]={new Dog("xxx",100,0.1),new Dog("bitch",1233,999999)};
Cat c=new Cat("xx",-2,-100.4);
d[0].showProfile();
d[1].showProfile();
c.showProfile();
System.out.println(Dog.sum+"隻狗"+Cat.sum+"隻貓");
}
}
class Dog
{
static int sum=0;
String name;
int age;
double weight;
Dog(String n,int a,double w)
{
sum++;
name=n;
age=a;
weight=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤");
}
}
class Cat
{
static int sum=0;
String name;
int age;
double weight;
Cat(String n,int a,double w)
{
sum++;
name=n;
age=a;
weight=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+weight+"公斤");
}
}
複製代碼
作者:
周雍程
時間:
2015-3-7 17:31
public class ch63
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,1.3f);
Dog d2=new Dog("球球",1,1.2f);
Cat c1=new Cat("咪咪",3,1.5f);
d1.showProfile();
d2.showProfile();
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓");
}
}
class Dog
{
static int sum=0;
String name;
int age;
float w;
Dog()
{
}
Dog(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Cat
{
static int sum=0;
String name;
int age;
float w;
Cat()
{
}
Cat(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
複製代碼
作者:
張彥承
時間:
2015-3-7 17:49
public class ch61
{
public static void main(String args[])
{
Dog d1=new Dog("憨憨",2,1.3f);
d1.showProfile();
Dog d2=new Dog("球球",1,1.2f);
d2.showProfile();
Cat c1=new Cat("咪咪",3,1.5f);
c1.showProfile();
System.out.println("總共有"+Dog.sum+"隻狗,"+Cat.sum+"隻貓");
}
}
class Dog
{
static int sum=0;
String name;
int age;
float w;
Dog()
{
}
Dog(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
class Cat
{
static int sum=0;
String name;
int age;
float w;
Cat()
{
}
Cat(String name,int age,float w)
{
sum++;
this.name=name;
this.age=age;
this.w=w;
}
void showProfile()
{
System.out.println(name+"今年"+age+"歲,體重"+w+"公斤");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2