1. 程式人生 > >字串與陣列集合的長度獲取

字串與陣列集合的長度獲取

字串、陣列、集合

型別 長度獲取的方法 示例 字串String length()
 String str = "abc"
 int length = str.length();
 System.out.println(length);//3

 

陣列Array length
int[] arr = new int[]{1,2,3,4,5};
int length = arr.length;
System.out.println(length);//5

 

list集合 size()
ArrayList<Integer> list = new ArrayList<>();
        int size = list.size();
        System.out.println(size);//0

 

HashSet、HashMap集合 size()
HashSet<String> hashSet = new HashSet<>();
int size = hashSet.size();