第1章 對象數組
阿新 • • 發佈:2018-03-21
Java1.1 對象數組概述
A:基本類型的數組:存儲的元素為基本類型
int[] arr={1,2,3,4}
B:對象數組:存儲的元素為引用類型
Student[] stus=new Student[3];
A:基本類型的數組:存儲的元素為基本類型
int[] arr={1,2,3,4}
B:對象數組:存儲的元素為引用類型
Student[] stus=new Student[3];
Student代表一個自定義類
Stus數組中stus[0],stus[1],stus[2]的元素數據類型為Student,
都可以指向一個Student對象
1.2 對象數組案例:
創建一個學生數組,存儲三個學生對象並遍歷
1.2.1 案例代碼一:
package com.itheima; /* * 自動生成構造方法: * 代碼區域右鍵 -- Source -- Generate Constructors from Superclass... 無參構造方法 * 代碼區域右鍵 -- Source -- Generate Constructor using Fields... 帶參構造方法 * 自動生成getXxx()/setXxx(): * 代碼區域右鍵 -- Source -- Generate Getters and Setters... */ public class Student { private String name; private int age; public Student() { } public Student(String name, int age) { this.name = name; this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } }
package com.itheima; /* * 創建一個學生數組,存儲三個學生對象並遍歷 * * 分析: * A:定義學生類 * B:創建學生數組 * C:創建學生對象 * D:把學生對象作為元素賦值給學生數組 * E:遍歷學生數組 */ public class StudentDemo { public static void main(String[] args) { //創建學生數組 Student[] students = new Student[3]; //創建學生對象 Student s1 = new Student("曹操",40); Student s2 = new Student("劉備",35); Student s3 = new Student("孫權",30); //把學生對象作為元素賦值給學生數組 students[0] = s1; students[1] = s2; students[2] = s3; //遍歷學生數組 for(int x=0; x<students.length; x++) { Student s = students[x]; //System.out.println(s); System.out.println(s.getName()+"---"+s.getAge()); } } }
1.3 對象數組的內存圖
第1章 對象數組