Java中hashset底層實現機制

今天寫算法,遇到了這個問題: HashSet<int[]> hs = new HashSet<>(); int[] arr1 = {4,5}; int[] arr2 = {4,5}; hs.add(arr1); hs.add(arr2); System.out.println(hs.size()); 結果爲:2 HashSet<ArrayList<Integer>> hs = new HashSe
相關文章
相關標籤/搜索