在Java中,可以使用new
關鍵字來調用構造方法。構造方法用于創建對象,并且在創建對象時會自動調用構造方法。
調用構造方法的語法如下:
類名 對象名 = new 類名(參數列表);
其中,類名
是要創建對象的類名,對象名
是創建的對象的名稱,參數列表
是構造方法中定義的參數。
例如,假設有一個名為Student
的類,其中有一個帶有參數的構造方法Student(String name, int age)
:
public class Student {
private String name;
private int age;
public Student(String name, int age) {
this.name = name;
this.age = age;
}
// 其他代碼...
}
可以使用以下代碼調用構造方法創建一個Student
對象:
Student student = new Student("張三", 18);
在上述代碼中,new Student("張三", 18)
調用了Student
類的構造方法,創建了一個名為student
的Student
對象,并將參數"張三"
和18
傳遞給構造方法。