构造方法是一个特殊的成员方法,有以下几点需要注意
(1)构造方法名称必须与类名一致
(2)构造方法名称前不能有任何返回值类型的声明。
(3)不能在构造方法中使用return返回值,但是可以单独写return语句作为方法的结束。
`package Zhuo;
/**
- 功能:定义构造方法
- 作者:阿打莫拉作
- 日期:2022年05月04日
*/
class Student{
public Student(){
System.out.println(“调用了无参构造方法”);
}
}
public class Example05 {
public static void main(String[] args) {
System.out.println(“声明对象…”); //声明对象
Student stu=null;
System.out.println(“实例化对象…”); //实例化对象
stu= new Student();
}`