📜  setter getter 数组 java 代码示例

📅  最后修改于: 2022-03-11 14:52:25.556000             🧑  作者: Mango

代码示例1
//Student class containing array of object 'leture'
public class Student {
    private Lecture[] lecture;
//lecture setter method
    public void setStudentLecture(Lecture[] lecture) {
        this.lecture = lecture;
    }
//lecture getter method
    public Lecture[] getStudentLecture() {
        return lecture;
    }


//main method for running code
    public static void main(String[] args) {
//Student object declaration
        Student student = new Student();
//lecture object declaration
        Lecture[] lectures = new Lecture[3];
//setting values for lecture names for each array element
        lectures[0] = new Lecture("Physics");
        lectures[1] = new Lecture("Mathematics");
        lectures[2] = new Lecture("Chemistry");
//Adding those elements to the array of lecture objects in Student Class
        student.setStudentLecture(lectures);
//displaying array of lecture objects
        Lecture[] lectures1 = student.getStudentLecture();
        for (int i = 0; i