在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
传递给构造方法。