创建对象数组(java 基础篇)

  • Post author:
  • Post category:java


public class Student2{
	private String name;	
	//构造方法
	public Student2(){
	
	}
	
	public Student2(String name){
        //this.属性,当前对象中的属性
		this.name = name;
	}
	
	public String getName(){
		return name;
	}
	
	public static void main(String[] args){
		Student2[] students = new Student2[3];//初始化数组的长度
		students[0] = new Student2("jack"); //对象的构造
		students[1] = new Student2("mary"); 
		students[2] = new Student2("wendy");
		
		for(int i = 0;i<3;i++){
			System.out.println(students[i].getName());
		}
	}	
}

this做三件事:1.调用本类属性;只要在类的方法中访问有类的属性,那么属性前一定要追加“this”关键字的形式。

2.调用本类方法(普通,构造);普通方法:this.方法名称(参数…);构造方法:this(参数..)

普通方法:this.方法名称(参数…)——虽然调用本类方法前可以不使用”this”,但是强烈建议追加上“this”,这样的目的是可以区分方法的定义的来源

构造方法:虽然使用this可以实现构造方法的互相调用,但是注意:1.this()调用构造方法的语句必须放在构造方法的首行。2.使用this调用构造方法的时候请留有出口。

3.表示当前对象(相对概念):在整体的操作过程之中,this定义没有变,只要有某一个对象调用了本类中的方法,那么这个this就表示当前的对象。

构造方法和普通方法的区别:使用关键字new实例化类新对象的时候使用一次,而普通方法是在对象实例化完成了后(构造方法已经执行过)可以调用多次。

###一个类中只能有一个public  class 类,但是可以有多个非public class 类。



版权声明:本文为Cassiel60原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。