數組的學習筆記案例

數組:容器 可以存儲多個 相同的數據類型的數據 數組的語法格式 int num[] =new int[5]; 數組的使用: 角標 是從0開始的 2.數組的其他定義方式 int num1[] =new int[3]; int [] num2 =new int[3]; int[] num3 ={3,4,5};//在java中經常使用的方式 簡化 數組的長度:3 注意: 1.在數組簡化定義方式的時候,j
相關文章
相關標籤/搜索