char boolean short int long float double
引用類型:除了上面的所有的類型都是應用類型
數(shù)組一旦被定義 大小就確定了践叠,無法更改
public class TestDay2 {
public static void main(String[] args){
//靜態(tài)
int[] score = {1,2,3};
String[] names = {"jack","merry"};
//動態(tài) 內容動態(tài)添加
float[] height = new float[5];
height[0] = 165.5f;
height[1] = 170f;
//String[] names = {"jack","merry"};
//計算器:長什么樣子 能做什么 概念 類
//有一個計算器在手上 具體存在的東西 對象
Random r = new Random();
//盡量不要擴大變量的作用域
//int[] Arrays
int[] count = new int[10];
for (int i = 0; i < 10; i++){
count[i] = r.nextInt(100);
}
數(shù)組輸出方式1
for (int i = 0; i < 10; i++){
System.out.print(count[i]+" ");
}
System.out.println();
數(shù)組輸出方式2
for (int temp: count){
System.out.print(temp + " ");
}
System.out.println();
數(shù)組輸出方式3
System.out.println(Arrays.toString(count));
}