Arrays
类是 Java 标准库中的一个实用工具类,提供了许多静态方法来操作数组。其中一些方法在日常开发中使用频率较高。以下是一些在实际开发中最常用的方法:
1. toString
方法
将数组转换为字符串表示。
int[] array = {1, 2, 3, 4, 5};
System.out.println(Arrays.toString(array));
// 输出: [1, 2, 3, 4, 5]
2. sort
方法
对数组进行排序(默认升序)。可以对 int
、double
、char
等基本类型数组进行排序,也可以对对象数组进行排序(对象必须实现 Comparable
接口)。
int[] array = {5, 3, 1, 4, 2};
Arrays.sort(array);
System.out.println(Arrays.toString(array));
// 输出: [1, 2, 3, 4, 5]
3. binarySearch
方法
使用二分查找算法在排序后的数组中查找元素的位置。
int[] array = {1, 2, 3, 4, 5};
int index = Arrays.binarySearch(array, 3);
System.out.println(index);
// 输出: 2
4. equals
方法
比较两个数组是否相等。对于基本类型数组和对象数组都有对应的方法。
int[] array1 = {1, 2, 3, 4, 5};
int[] array2 = {1, 2, 3, 4, 5};
boolean isEqual = Arrays.equals(array1, array2);
System.out.println(isEqual);
// 输出: true
5. fill
方法
用指定的值填充数组的每个元素。
int[] array = new int[5];
Arrays.fill(array, 9);
System.out.println(Arrays.toString(array));
// 输出: [9, 9, 9, 9, 9]
6. copyOf
和 copyOfRange
方法
创建一个新数组,复制原数组中的所有或部分元素。
int[] array = {1, 2, 3, 4, 5};
int[] newArray = Arrays.copyOf(array, 3);
System.out.println(Arrays.toString(newArray));
// 输出: [1, 2, 3]int[] rangeArray = Arrays.copyOfRange(array, 1, 4);
System.out.println(Arrays.toString(rangeArray));
// 输出: [2, 3, 4]
7. asList
方法
将数组转换为 List
。注意,这个方法返回的 List
是固定大小的,不能添加或删除元素。
String[] array = {"one", "two", "three"};
List<String> list = Arrays.asList(array);
System.out.println(list);
// 输出: [one, two, three]
8. deepToString
方法
将多维数组转换为字符串表示。
int[][] array = {{1, 2, 3}, {4, 5, 6}};
System.out.println(Arrays.deepToString(array));
// 输出: [[1, 2, 3], [4, 5, 6]]
9. deepEquals
方法
比较两个多维数组是否相等。
int[][] array1 = {{1, 2, 3}, {4, 5, 6}};
int[][] array2 = {{1, 2, 3}, {4, 5, 6}};
boolean isEqual = Arrays.deepEquals(array1, array2);
System.out.println(isEqual);
// 输出: true
10. parallelSort
方法
使用并行排序算法对数组进行排序。
int[] array = {5, 3, 1, 4, 2};
Arrays.parallelSort(array);
System.out.println(Arrays.toString(array));
// 输出: [1, 2, 3, 4, 5]
11. stream
方法
将数组转换为流(Stream),方便进行各种流操作。
int[] array = {1, 2, 3, 4, 5};
IntStream stream = Arrays.stream(array);
stream.forEach(System.out::println);
// 输出: 1 2 3 4 5
12. setAll
和 parallelSetAll
方法
使用生成器函数为数组的每个元素设置值。
int[] array = new int[5];
Arrays.setAll(array, i -> i * 2);
System.out.println(Arrays.toString(array));
// 输出: [0, 2, 4, 6, 8]
13. mismatch
方法
找到两个数组中第一个不同元素的索引。
int[] array1 = {1, 2, 3, 4, 5};
int[] array2 = {1, 2, 3, 4, 6};
int mismatchIndex = Arrays.mismatch(array1, array2);
System.out.println(mismatchIndex);
// 输出: 4
14. spliterator
方法
返回一个 Spliterator
,可以用于并行遍历数组。
int[] array = {1, 2, 3, 4, 5};
Spliterator.OfInt spliterator = Arrays.spliterator(array);
spliterator.forEachRemaining(System.out::println);
// 输出: 1 2 3 4 5
15. hashCode
方法
返回数组的哈希码。对于基本类型数组和对象数组都有对应的方法。
int[] array = {1, 2, 3, 4, 5};
int hashCode = Arrays.hashCode(array);
System.out.println(hashCode);
// 输出: 哈希码值(与具体内容相关)
16. deepHashCode
方法
返回多维数组的深度哈希码。
int[][] array = {{1, 2, 3}, {4, 5, 6}};
int deepHashCode = Arrays.deepHashCode(array);
System.out.println(deepHashCode);
// 输出: 深度哈希码值(与具体内容相关)
17. deepCopyOf
方法
Java 标准库中没有 deepCopyOf
方法,但你可以使用 Arrays.stream
和 map
方法来实现多维数组的深度复制。
int[][] array = {{1, 2, 3}, {4, 5, 6}};
int[][] deepCopy = Arrays.stream(array).map(int[]::clone).toArray(int[][]::new);
System.out.println(Arrays.deepToString(deepCopy));
// 输出: [[1, 2, 3], [4, 5, 6]]
18. parallelPrefix
方法
使用给定的二元操作符对数组的每个元素进行累积操作。
int[] array = {1, 2, 3, 4, 5};
Arrays.parallelPrefix(array, Integer::sum);
System.out.println(Arrays.toString(array));
// 输出: [1, 3, 6, 10, 15]
19. parallelSetAll
方法
使用生成器函数并行设置数组的每个元素的值。
int[] array = new int[5];
Arrays.parallelSetAll(array, i -> i * 2);
System.out.println(Arrays.toString(array));
// 输出: [0, 2, 4, 6, 8]
20. compare
方法
比较两个数组的字典顺序。
int[] array1 = {1, 2, 3};
int[] array2 = {1, 2, 4};
int result = Arrays.compare(array1, array2);
System.out.println(result);
// 输出: -1(因为 array1 小于 array2)
21. compareUnsigned
方法
比较两个无符号数组的字典顺序。
byte[] array1 = {(byte) 255, 1, 2};
byte[] array2 = {0, 1, 2};
int result = Arrays.compareUnsigned(array1, array2);
System.out.println(result);
// 输出: 1(因为 255 作为无符号数大于 0)
22. setAll
方法
使用生成器函数设置数组的每个元素的值。
int[] array = new int[5];
Arrays.setAll(array, i -> i * 2);
System.out.println(Arrays.toString(array));
// 输出: [0, 2, 4, 6, 8]
23. parallelPrefix
方法
对数组的每个元素进行并行前缀计算。
int[] array = {1, 2, 3, 4, 5};
Arrays.parallelPrefix(array, Integer::sum);
System.out.println(Arrays.toString(array));
// 输出: [1, 3, 6, 10, 15]
24. checkIndex
方法
检查索引是否在数组范围内,返回索引或抛出 IndexOutOfBoundsException
。
int[] array = {1, 2, 3, 4, 5};
int index = Arrays.checkIndex(2, array.length);
System.out.println(index);
// 输出: 2
25. compare
方法
按字典顺序比较两个数组。
int[] array1 = {1, 2, 3};
int[] array2 = {1, 2, 4};
int result = Arrays.compare(array1, array2);
System.out.println(result);
// 输出: -1,因为 array1 小于 array2
26. compareUnsigned
方法
按字典顺序比较两个无符号数组。
byte[] array1 = {(byte) 255, 1, 2};
byte[] array2 = {0, 1, 2};
int result = Arrays.compareUnsigned(array1, array2);
System.out.println(result);
// 输出: 1,因为 255 作为无符号数大于 0
27. mismatch
方法
找到两个数组中第一个不同元素的索引。
int[] array1 = {1, 2, 3, 4, 5};
int[] array2 = {1, 2, 3, 4, 6};
int mismatchIndex = Arrays.mismatch(array1, array2);
System.out.println(mismatchIndex);
// 输出: 4
28. setAll
方法
使用生成器函数设置数组的每个元素的值。
int[] array = new int[5];
Arrays.setAll(array, i -> i * 2);
System.out.println(Arrays.toString(array));
// 输出: [0, 2, 4, 6, 8]
29. stream
方法
将数组转换为流(Stream),方便进行各种流操作。
int[] array = {1, 2, 3, 4, 5};
IntStream stream = Arrays.stream(array);
stream.forEach(System.out::println);
// 输出: 1 2 3 4 5
30. copyOf
和 copyOfRange
方法
创建一个新数组,复制原数组中的所有或部分元素。
int[] array = {1, 2, 3, 4, 5};
int[] newArray = Arrays.copyOf(array, 3);
System.out.println(Arrays.toString(newArray));
// 输出: [1, 2, 3]int[] rangeArray = Arrays.copyOfRange(array, 1, 4);
System.out.println(Arrays.toString(rangeArray));
// 输出: [2, 3, 4]