11月23日Java學習
阿新 • • 發佈:2021-11-23
-
使用new關鍵字建立物件
-
使用new關鍵字建立的時候,除了分配記憶體空間之外,還會給建立好的物件進行預設的初始化以及對類中構造器的呼叫。
//學生類
public class Student {
//屬性
String name ;
int age;
public void study() {
System.out.println(this.name+"正在學習");
}
}
//一個專案只有一個main方法
public class Application {
public static void main(String[] args) {
//類:抽象的,例項化
//類例項化過後會返回一個自己的物件!
//student物件是一個Student類的具體例項!
Student xiaoMing = new Student();
Student xh = new Student();
xiaoMing.name = "小明";
xiaoMing.age = 3;
System.out.println(xiaoMing.age);
System.out.println(xiaoMing.name);
xh.age = 3;
xh.name = "小紅";
System.out.println(xh.name);
System.out.println(xh.age);
}
}