Java Guava Ints类
1 什么是Guava Ints类
Ints 是原始类型 int 的实用程序类。
2 Guava Ints类的语法
@GwtCompatible
public final class Ints
extends Object
3 Guava Ints类的方法
方法 | 描述 |
---|---|
static List<Integer> asList(int... backingArray) | 返回由指定数组支持的固定大小列表,类似于 Arrays.asList(Object[])。 |
static int checkedCast(long value) | 如果可能,返回等于 value 的 int 值。 |
static int compare(int a, int b) | 比较两个指定的 int 值。 |
static int[] concat(int[]... arrays) | 返回每个提供的数组中组合成单个数组的值。 |
static boolean contains(int[] array, int target) | 如果目标作为数组中任何位置的元素存在,则返回 true。 |
static int[] ensureCapacity(int[] array, int minLength, int padding) | 返回包含与数组相同的值的数组,但保证具有指定的最小长度。 |
static int fromByteArray(byte[] bytes) | 返回 int 值,其 big-endian 表示存储在字节的前 4 个字节中;相当于 ByteBuffer.wrap(bytes).getInt()。 |
static int fromBytes(byte b1, byte b2, byte b3, byte b4) | 以big-endian顺序返回字节表示为给定 4 个字节的 int 值;相当于 Ints.fromByteArray(new byte[] {b1, b2, b3, b4})。 |
static int hashCode(int value) | 返回值的哈希码;等于调用 ((Integer) value).hashCode() 的结果。 |
static int indexOf(int[] array, int target) | 返回值目标在数组中第一次出现的索引。 |
static int indexOf(int[] array, int[] target) | 返回指定目标在数组中第一次出现的起始位置,如果没有这样的出现,则返回 -1。 |
static String join(String separator, int... array) | 返回一个字符串,其中包含由分隔符分隔的提供的 int 值。 |
static int lastIndexOf(int[] array, int target) | 返回值目标在数组中最后一次出现的索引。 |
static Comparator<int[]> lexicographicalComparator() | 返回按字典顺序比较两个 int 数组的比较器。 |
static int max(int... array) | 返回数组中存在的最大值。 |
static int min(int... array) | 返回数组中存在的最小值。 |
static int saturatedCast(long value) | 返回值中最接近 value 的 int。 |
static Converter<String,Integer> stringConverter() | 返回一个可序列化的转换器对象,该对象使用 Integer.decode(java.lang.String) 和 Integer.toString() 在字符串和整数之间进行转换。 |
static int[] toArray(Collection<? extends Number> collection) | 返回一个包含集合的每个值的数组,以 Number.intValue() 的方式转换为一个 int 值。 |
static byte[] toByteArray(int value) | 返回 4 元素字节数组中值的大端表示;相当于 ByteBuffer.allocate(4).putInt(value).array()。 |
static Integer tryParse(String string) | 将指定的字符串解析为带符号的十进制整数值。 |
5 Guava Ints类的例子
让我们看一个简单的Guava Ints类示例。
package com.yiidian;
import com.google.common.primitives.Ints;
import java.util.List;
public class GuavaTester {
public static void main(String args[]) {
GuavaTester tester = new GuavaTester();
tester.testInts();
}
private void testInts() {
int[] intArray = {1,2,3,4,5,6,7,8,9};
//convert array of primitives to array of objects
List<Integer> objectArray = Ints.asList(intArray);
System.out.println(objectArray.toString());
//convert array of objects to array of primitives
intArray = Ints.toArray(objectArray);
System.out.print("[ ");
for(int i = 0; i< intArray.length ; i++) {
System.out.print(intArray[i] + " ");
}
System.out.println("]");
//check if element is present in the list of primitives or not
System.out.println("5 is in list? " + Ints.contains(intArray, 5));
//Returns the minimum
System.out.println("Min: " + Ints.min(intArray));
//Returns the maximum
System.out.println("Max: " + Ints.max(intArray));
//get the byte array from an integer
byte[] byteArray = Ints.toByteArray(20000);
for(int i = 0; i< byteArray.length ; i++) {
System.out.print(byteArray[i] + " ");
}
}
}
输出结果为:
热门文章
优秀文章