標題:
static 關鍵字 (一)
[打印本頁]
作者:
周政輝
時間:
2018-10-20 15:10
標題:
static 關鍵字 (一)
成員 (資料成員或方法成員) 在宣告時若使用關鍵字 static 修飾,則該成員變成屬於類別 (class) 擁有而非物件 (object) 擁有,因此我們若要在其他地方使用該成員時,不用建立實體物件,只需透過類別即可使用。譬如:Math.PI 即為靜態的資料成員,而Math.pow() 即為靜態的方法成員。
[attach]5076[/attach]
作者:
王駿愷
時間:
2018-10-20 15:30
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
dog dog =new dog();
dog.name="球球";
dog dog1=new dog();
dog1.name="憨憨";
System.out.println(dog.name);
System.out.println(dog1.name);
}
}
複製代碼
public class dog {
static String name;
int age;
double weight;
String color;
public void ShowProfile()
{
System.out.println(String.format("%s今年%d歲,體重%f公斤毛色%s",this.name,this.age,this.weight,this.color));
}
public void makesound(int n)
{
for(int i=0;i<n;i++)
{
System.out.print("汪~");
}
System.out.println();
}
dog()
{
}
dog(String name,int age,double weight,String color)
{
this.name=name;
this.age=age;
this.weight=weight;
this.color=color;
}
}
複製代碼
作者:
湯東緯
時間:
2018-10-20 15:31
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
dog dog =new dog();
dog.name="球球";
dog dog1=new dog();
dog1.name="憨憨";
System.out.println(dog.name);
System.out.println(dog1.name);
}
}
複製代碼
作者:
彭煥宇
時間:
2018-10-20 15:33
package bbs.istak.org.tw;
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
dog dog =new dog();
dog.name="球球";
dog dog1=new dog();
dog1.name="憨憨";
System.out.println(dog.name);
System.out.println(dog1.name);
}
}
複製代碼
作者:
彭煥宇
時間:
2018-10-20 15:33
package bbs.istak.org.tw;
public class Dog {
static String name;
int age;
double weight;
String color;
public void ShowProfile()
{
System.out.println(String.format("%s今年%d歲,體重%f公斤毛色%s",this.name,this.age,this.weight,this.color));
}
public void makesound(int n)
{
for(int i=0;i<n;i++)
{
System.out.print("汪~");
}
System.out.println();
}
dog(String name,int age,double weight,String color)
{
this.name=name;
this.age=age;
this.weight=weight;
this.color=color;
}
}
複製代碼
作者:
鄭楀諺
時間:
2018-10-20 15:34
package Morris;
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
Dog dog =new Dog();
dog.name="汪汪";
Dog dog1 =new Dog();
dog1.name="球球";
System.out.println(dog.name);
System.out.println(dog1.name);
}
}
複製代碼
作者:
黃安立
時間:
2018-10-26 21:29
public class M{
public static void main(String[] args) {
dog dog =new dog();
dog.name="球球";
dog dog9=new dog();
dog9.name="憨憨";
System.out.println(dog.name);
System.out.println(dog9.name);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2