package cn.edu.bjut.chapter5; public class ObjectArrayTester { public static void modifyAge(Student stu) { stu.setAge(21); } public static void main(String[] args) { Student[] students = new Student[3]; students[0] = new Student("li", 'F', 19, new double[] {89, 86, 69}); students[1] = new Student("he", 'M', 18, new double[] {90, 83, 76}); students[2] = new Student("zhang", 'M', 20, new double[] {78, 91, 80}); for (int i = 0; i < students.length; i++) { System.out.println(students[i]); } modifyAge(students[0]); System.out.println(students[0]); } }