方法摘要 |
static | (T... a) 返回一个受指定数组支持的固定大小的列表。 |
static int | (byte[] a, byte key) 使用二分搜索法来搜索指定的 byte 型数组,以获得指定的值。 |
static int | (byte[] a, int fromIndex, int toIndex, byte key) 使用二分搜索法来搜索指定的 byte 型数组的范围,以获得指定的值。 |
static int | (char[] a, char key) 使用二分搜索法来搜索指定的 char 型数组,以获得指定的值。 |
static int | (char[] a, int fromIndex, int toIndex, char key) 使用二分搜索法来搜索指定的 char 型数组的范围,以获得指定的值。 |
static int | (double[] a, double key) 使用二分搜索法来搜索指定的 double 型数组,以获得指定的值。 |
static int | (double[] a, int fromIndex, int toIndex, double key) 使用二分搜索法来搜索指定的 double 型数组的范围,以获得指定的值。 |
static int | (float[] a, float key) 使用二分搜索法来搜索指定的 float 型数组,以获得指定的值。 |
static int | (float[] a, int fromIndex, int toIndex, float key) 使用二分搜索法来搜索指定的 float 型数组的范围,以获得指定的值。 |
static int | (int[] a, int key) 使用二分搜索法来搜索指定的 int 型数组,以获得指定的值。 |
static int | (int[] a, int fromIndex, int toIndex, int key) 使用二分搜索法来搜索指定的 int 型数组的范围,以获得指定的值。 |
static int | (long[] a, int fromIndex, int toIndex, long key) 使用二分搜索法来搜索指定的 long 型数组的范围,以获得指定的值。 |
static int | (long[] a, long key) 使用二分搜索法来搜索指定的 long 型数组,以获得指定的值。 |
static int | ([] a, int fromIndex, int toIndex, key) 使用二分搜索法来搜索指定数组的范围,以获得指定对象。 |
static int | ([] a, key) 使用二分搜索法来搜索指定数组,以获得指定对象。 |
static int | (short[] a, int fromIndex, int toIndex, short key) 使用二分搜索法来搜索指定的 short 型数组的范围,以获得指定的值。 |
static int | (short[] a, short key) 使用二分搜索法来搜索指定的 short 型数组,以获得指定的值。 |
static | (T[] a, int fromIndex, int toIndex, T key, <? super T> c) 使用二分搜索法来搜索指定数组的范围,以获得指定对象。 |
static | (T[] a, T key, <? super T> c) 使用二分搜索法来搜索指定数组,以获得指定对象。 |
static boolean[] | (boolean[] original, int newLength) 复制指定的数组,截取或用 false 填充(如有必要),以使副本具有指定的长度。 |
static byte[] | (byte[] original, int newLength) 复制指定的数组,截取或用 0 填充(如有必要),以使副本具有指定的长度。 |
static char[] | (char[] original, int newLength) 复制指定的数组,截取或用 null 字符填充(如有必要),以使副本具有指定的长度。 |
static double[] | (double[] original, int newLength) 复制指定的数组,截取或用 0 填充(如有必要),以使副本具有指定的长度。 |
static float[] | (float[] original, int newLength) 复制指定的数组,截取或用 0 填充(如有必要),以使副本具有指定的长度。 |
static int[] | (int[] original, int newLength) 复制指定的数组,截取或用 0 填充(如有必要),以使副本具有指定的长度。 |
static long[] | (long[] original, int newLength) 复制指定的数组,截取或用 0 填充(如有必要),以使副本具有指定的长度。 |
static short[] | (short[] original, int newLength) 复制指定的数组,截取或用 0 填充(如有必要),以使副本具有指定的长度。 |
static | (T[] original, int newLength) 复制指定的数组,截取或用 null 填充(如有必要),以使副本具有指定的长度。 |
static | (U[] original, int newLength, <? extends T[]> newType) 复制指定的数组,截取或用 null 填充(如有必要),以使副本具有指定的长度。 |
static boolean[] | (boolean[] original, int from, int to) 将指定数组的指定范围复制到一个新数组。 |
static byte[] | (byte[] original, int from, int to) 将指定数组的指定范围复制到一个新数组。 |
static char[] | (char[] original, int from, int to) 将指定数组的指定范围复制到一个新数组。 |
static double[] | (double[] original, int from, int to) 将指定数组的指定范围复制到一个新数组。 |
static float[] | (float[] original, int from, int to) 将指定数组的指定范围复制到一个新数组。 |
static int[] | (int[] original, int from, int to) 将指定数组的指定范围复制到一个新数组。 |
static long[] | (long[] original, int from, int to) 将指定数组的指定范围复制到一个新数组。 |
static short[] | (short[] original, int from, int to) 将指定数组的指定范围复制到一个新数组。 |
static | (T[] original, int from, int to) 将指定数组的指定范围复制到一个新数组。 |
static | (U[] original, int from, int to, <? extends T[]> newType) 将指定数组的指定范围复制到一个新数组。 |
static boolean | ([] a1, [] a2) 如果两个指定数组彼此是深层相等 的,则返回 true。 |
static int | ([] a) 基于指定数组的“深层内容”返回哈希码。 |
static | ([] a) 返回指定数组“深层内容”的字符串表示形式。 |
static boolean | (boolean[] a, boolean[] a2) 如果两个指定的 boolean 型数组彼此相等,则返回 true。 |
static boolean | (byte[] a, byte[] a2) 如果两个指定的 byte 型数组彼此相等,则返回 true。 |
static boolean | (char[] a, char[] a2) 如果两个指定的 char 型数组彼此相等,则返回 true。 |
static boolean | (double[] a, double[] a2) 如果两个指定的 double 型数组彼此相等,则返回 true。 |
static boolean | (float[] a, float[] a2) 如果两个指定的 float 型数组彼此相等,则返回 true。 |
static boolean | (int[] a, int[] a2) 如果两个指定的 int 型数组彼此相等,则返回 true。 |
static boolean | (long[] a, long[] a2) 如果两个指定的 long 型数组彼此相等,则返回 true。 |
static boolean | ([] a, [] a2) 如果两个指定的 Objects 数组彼此相等,则返回 true。 |
static boolean | (short[] a, short[] a2) 如果两个指定的 short 型数组彼此相等,则返回 true。 |
static void | (boolean[] a, boolean val) 将指定的 boolean 值分配给指定 boolean 型数组的每个元素。 |
static void | (boolean[] a, int fromIndex, int toIndex, boolean val) 将指定的 boolean 值分配给指定 boolean 型数组指定范围中的每个元素。 |
static void | (byte[] a, byte val) 将指定的 byte 值分配给指定 byte 节型数组的每个元素。 |
static void | (byte[] a, int fromIndex, int toIndex, byte val) 将指定的 byte 值分配给指定 byte 型数组指定范围中的每个元素。 |
static void | (char[] a, char val) 将指定的 char 值分配给指定 char 型数组的每个元素。 |
static void | (char[] a, int fromIndex, int toIndex, char val) 将指定的 char 值分配给指定 char 型数组指定范围中的每个元素。 |
static void | (double[] a, double val) 将指定的 double 值分配给指定 double 型数组的每个元素。 |
static void | (double[] a, int fromIndex, int toIndex, double val) 将指定的 double 值分配给指定 double 型数组指定范围中的每个元素。 |
static void | (float[] a, float val) 将指定的 float 值分配给指定 float 型数组的每个元素。 |
static void | (float[] a, int fromIndex, int toIndex, float val) 将指定的 float 值分配给指定 float 型数组指定范围中的每个元素。 |
static void | (int[] a, int val) 将指定的 int 值分配给指定 int 型数组的每个元素。 |
static void | (int[] a, int fromIndex, int toIndex, int val) 将指定的 int 值分配给指定 int 型数组指定范围中的每个元素。 |
static void | (long[] a, int fromIndex, int toIndex, long val) 将指定的 long 值分配给指定 long 型数组指定范围中的每个元素。 |
static void | (long[] a, long val) 将指定的 long 值分配给指定 long 型数组的每个元素。 |
static void | ([] a, int fromIndex, int toIndex, val) 将指定的 Object 引用分配给指定 Object 数组指定范围中的每个元素。 |
static void | ([] a, val) 将指定的 Object 引用分配给指定 Object 数组的每个元素。 |
static void | (short[] a, int fromIndex, int toIndex, short val) 将指定的 short 值分配给指定 short 型数组指定范围中的每个元素。 |
static void | (short[] a, short val) 将指定的 short 值分配给指定 short 型数组的每个元素。 |
static int | (boolean[] a) 基于指定数组的内容返回哈希码。 |
static int | (byte[] a) 基于指定数组的内容返回哈希码。 |
static int | (char[] a) 基于指定数组的内容返回哈希码。 |
static int | (double[] a) 基于指定数组的内容返回哈希码。 |
static int | (float[] a) 基于指定数组的内容返回哈希码。 |
static int | (int[] a) 基于指定数组的内容返回哈希码。 |
static int | (long[] a) 基于指定数组的内容返回哈希码。 |
static int | ([] a) 基于指定数组的内容返回哈希码。 |
static int | (short[] a) 基于指定数组的内容返回哈希码。 |
static void | (byte[] a) 对指定的 byte 型数组按数字升序进行排序。 |
static void | (byte[] a, int fromIndex, int toIndex) 对指定 byte 型数组的指定范围按数字升序进行排序。 |
static void | (char[] a) 对指定的 char 型数组按数字升序进行排序。 |
static void | (char[] a, int fromIndex, int toIndex) 对指定 char 型数组的指定范围按数字升序进行排序。 |
static void | (double[] a) 对指定的 double 型数组按数字升序进行排序。 |
static void | (double[] a, int fromIndex, int toIndex) 对指定 double 型数组的指定范围按数字升序进行排序。 |
static void | (float[] a) 对指定的 float 型数组按数字升序进行排序。 |
static void | (float[] a, int fromIndex, int toIndex) 对指定 float 型数组的指定范围按数字升序进行排序。 |
static void | (int[] a) 对指定的 int 型数组按数字升序进行排序。 |
static void | (int[] a, int fromIndex, int toIndex) 对指定 int 型数组的指定范围按数字升序进行排序。 |
static void | (long[] a) 对指定的 long 型数组按数字升序进行排序。 |
static void | (long[] a, int fromIndex, int toIndex) 对指定 long 型数组的指定范围按数字升序进行排序。 |
static void | ([] a) 根据元素的对指定对象数组按升序进行排序。 |
static void | ([] a, int fromIndex, int toIndex) 根据元素的对指定对象数组的指定范围按升序进行排序。 |
static void | (short[] a) 对指定的 short 型数组按数字升序进行排序。 |
static void | (short[] a, int fromIndex, int toIndex) 对指定 short 型数组的指定范围按数字升序进行排序。 |
static | (T[] a, <? super T> c) 根据指定比较器产生的顺序对指定对象数组进行排序。 |
static | (T[] a, int fromIndex, int toIndex, <? super T> c) 根据指定比较器产生的顺序对指定对象数组的指定范围进行排序。 |
static | (boolean[] a) 返回指定数组内容的字符串表示形式。 |
static | (byte[] a) 返回指定数组内容的字符串表示形式。 |
static | (char[] a) 返回指定数组内容的字符串表示形式。 |
static | (double[] a) 返回指定数组内容的字符串表示形式。 |
static | (float[] a) 返回指定数组内容的字符串表示形式。 |
static | (int[] a) 返回指定数组内容的字符串表示形式。 |
static | (long[] a) 返回指定数组内容的字符串表示形式。 |
static | ([] a) 返回指定数组内容的字符串表示形式。 |
static | (short[] a) 返回指定数组内容的字符串表示形式。 |