1.陣列的定義
陣列相當於乙個容器,存放了一組相同型別的資料。
2.陣列存放的規則
是以下標(角標)來存放的,並且下標從0開始。
3.宣告規範
資料型別 陣列名 =初值。
兩種表達方式:
int array = new
int [陣列的個數];
int array = new
int [5];
int array = new
int ;
int array = new
int ;
4.**分析
1):
public
static
void
main(string args) ;
//列印陣列中所有的值 --遍歷陣列
陣列的長度
//第一種列印方法
for(int =0;i//第二種列印方法
//將陣列 轉化成字串 來輸出
system.out.println(arrays.tostring(array));
2)
//需求:隨機10個數 隨機的區間為[15,150]
// 1.把這個10個數放入陣列中
// 2.列印最大值
int array = new
int [10];
for(int i = 0;iint num=(math.random())*((150-15a+1)+15);
//把資料放入陣列 對應的位置中
array[i]=num;
}system.out.println(arrays.tostring(array));
int max=0;
for(int j=0;j}system.out.println("最大值為:"+max);
Java陣列的遍歷
public static void main string args 靜態初始化 遍歷陣列取值 for int i 0 i onearray.length i system.out.println string onearrays newstring 5 動態初始化 遍歷陣列賦值 for int ...
Java筆記 陣列的定義與遍歷
int a int b new int int c new int 5 拿到陣列裡的乙個數 system.out.println a 0 遍歷一維陣列 for int k a int d int e new int,int f new int 3 4 int g new int 3 拿到陣列裡的乙個...
陣列與物件的遍歷
遍歷物件屬性使用for in 遍歷物件 for in let obj 建立物件 let array007 let c 0 for let key in obj console.log array007,將物件中的鍵放入陣列中 遍歷陣列使用for of 陣列的遍歷 for of let array 1...