數(shù)組array
/**
* 數(shù)組array的聲明和創(chuàng)建
*/
public class Test1 {
? ?public static void main(String[] args) {
? ? ? ?int[] s;
? ? ? ?//聲明數(shù)組 格式: 數(shù)據(jù)類型[] 變量名 如String[] args
? ? ? ?s = new int[10];
? ? ? ?//創(chuàng)建 這里才會(huì)分配空間給數(shù)組 通過new創(chuàng)建數(shù)組 數(shù)組也是對(duì)象 和對(duì)象的初始化一樣
? ? ? ?//int規(guī)定數(shù)組中元素的類型 [10]規(guī)定數(shù)組容量是10個(gè)元素 下標(biāo)index從0-9
? ? ? ?//創(chuàng)建即初始化,10個(gè)元素全部進(jìn)行int類型的初始化=0
? ? ? ?//數(shù)組一旦被創(chuàng)建 長(zhǎng)度是固定的 大小不可改變
? ? ? ?System.out.println(s[0]);
? ? ? ?//變量名[index索引] 返回該數(shù)組第index位元素
? ? ? ?System.out.println(s[9]);
? ? ? ?//10個(gè)元素 第9位是最后一位 初始化的數(shù)組s所有位數(shù)值都是0
? ? ? ?for(int i = 0; i<10; i++){
? ? ? ? ? ?s[i] = i*i;
? ? ? ? ? ?System.out.print(s[i]+"\t");
????????????//結(jié)果[0,1,4,9.....81]
? ? ? ?}
? ?}
}
class Person{
? ?private int id;
? ?private int age;
? ?public Person(int id, int age) {
? ? ? ?this.id = id;
? ? ? ?this.age = age;
? ?}
? ?public int getId(){
????????//私有屬性通過setget調(diào)用
? ? ? ?return id;
? ?}
? ?public int getAge(){
? ? ? ?return age;
? ?}
}
class test2{
? ?public static void main(String[] args) {
? ? ? ?Person[] p = new Person[10];
? ? ? ?//引用類型創(chuàng)建數(shù)組 數(shù)組內(nèi)10個(gè)元素為地址 初始化均為null
? ? ? ?for(int i=0,j=1;i<10;i++,j++){
? ? ? ? ? ?p[i] = new Person(i+1,j*5);
? ? ? ?}
? ? ? ?System.out.println(p[7].getAge());
????????//下標(biāo)index7的地址指向的對(duì)象.getAge()方法調(diào)用age屬性的值
? ?}
}