1.JAVA基礎——數組、集合1

1.數組聲明 int score[] = new int[]{1,2,3}; int[] score2 = {1,2,3}; int[] score3 = new int[3]; 2.集合 先上一張邏輯圖。 在JAVA中,集合容器分爲兩類:一種是單值的Collection,一種是存儲鍵-值對的Map。 Colleciton:Collection是一個接口,用於表示任何對象或元素組。 Collect
相關文章
相關標籤/搜索