例:定义包含3个元素的对象数组,数据类型为Person,并用for遍历输出
Person类
public class Person {
public int age;
public String name;
public Person(int age,String name){
this.age = age;
this.name = name;
}
}
Test类
public class Test {
public static void main(String[] args) {
Person[] person ={new Person(22,"xxx"),new Person(20,"yyy"),new Person(21,"zzz")};
for (int i = 0; i < person.length; i++) {
System.out.println(person[i].age+"\t"+person[i].name);
}
}
}
结果:
对象数组的数据类型是具体的类名,对象数组储存的就是这个类的对象,每一个数组元素都是一个对象。当根据下标查找元素时,可以根据对象的使用方法来使用该元素。
标签:JAVA,name,person,对象,age,Person,数组,public From: https://blog.csdn.net/m0_71192988/article/details/141067133