《Java基础——构造器(构造方法)》

2022/9/15 14:19:29

本文主要是介绍《Java基础——构造器(构造方法)》,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Java基础——构造器(构造方法)

总结:


1.构造器名应与类名相同,且无返回值。

2."new 方法"的本质就是在调用构造器。

3.构造器的作用——初始化对象的值。

一、无参构造;


规则:

1.无参构造的作用是:实例化一个对象。

2.即使不定义构造器,也会默认生成无参构造。

格式:

class 类名
{
    int 字段名;
    String 字段名;
	public 类名()
    {
        this.字段名="待输出的值";			   //输出“待输出的值”;				
    }
}

例如:

class Student
{
    String name;
    public Student()
    {
        this.name="苏巴提";
    }
    public static void main(String[] args)
    {
        Student m=new Student();
        System.out.println(m.name);
    }
}

编译结果:

苏巴提

二、有参构造;


规则:

1.有参构造的作用是:初始化类中的属性。

2.使用有参构造前必须手动创建一个无参构造。

3.“new方法”后面的参数类型、个数与有参构造相对应时才能调用。

4.有参构造的优先级别高于无参构造。

格式:

class 类名
{
    String 字段名1;
    int 字段名2;
    public 类名()
    {
    }
    public 类名(String 字段名3, int 字段名4)
    {
        this.字段名1=字段名3;					//输出“new方法”中的参数;
        this.字段名2=6;					  //输出“6”;	 
    }
}

例如:

class Student
{
	String name;
	int num;
	public Student()
	{
		this.name="苏巴提";
	}
	public Student(String name, int num)
	{
		this.name=name;
		this.num=6;
	}
	public static void main(String[] args)
	{
		Student m=new Student("努尔居力", 7);
		System.out.println(m.name);
		System.out.println(m.num);
	}
}

编译结果:

努尔居力
6


这篇关于《Java基础——构造器(构造方法)》的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程