Guava Ints 类
Ints 是用于原始类型 int 的实用类。
类声明
以下是 com.google.common.primitives.Ints 类的声明 –
@GwtCompatible
public final class Ints
extends Object
字段
序号 | 字段与描述 |
---|---|
1 | static int BYTES 用于表示原始int值所需的字节数。 |
2 | static int MAX_POWER_OF_TWO 可以表示为int的最大二的幂。 |
方法
序号 | 方法和描述 |
---|---|
1 | static List |
2 | static int checkedCast(long value) 如果可能,返回与value相等的int值。 |
3 | static int compare(int a, int b) 比较两个指定的int值。 |
4 | static int[] concat(int[]… arrays) 将每个提供的数组的值合并成一个单一的数组。 |
5 | static boolean contains(int[] array, int target) 返回true,如果目标在数组中的任何地方作为一个元素存在。 |
6 | static int[] ensureCapacity(int[] array, int minLength, int padding) 返回一个数组,包含与数组相同的值,但保证至少具有指定的最小长度。 |
7 | static int fromByteArray(byte[] bytes) 返回存储在bytes的前4个字节的big-endian表示形式的int值;等同于ByteBuffer.wrap(bytes).getInt()。 |
8 | static int fromBytes(byte b1, byte b2, byte b3, byte b4) 返回给定的4个字节的字节表示形式的int值,按big-endian顺序;等同于Ints.fromByteArray(new byte[] {b1, b2, b3, b4})。 |
9 | static int hashCode(int value) 返回value的哈希码;等同于调用((Integer) value).hashCode()的结果。 |
10 | static int indexOf(int[] array, int target) 返回数组array中首次出现的值target的索引。 |
11 | static int indexOf(int[] array, int[] target) 返回数组array中指定目标的首次出现的起始位置,如果没有找到则返回-1。 |
12 | static String join(String separator, int… array) 返回一个字符串,其中包含以separator分隔的提供的int值。 |
13 | static int lastIndexOf(int[] array, int target) 返回数组中目标值 target 最后出现的索引。 |
14 | static Comparator <int[]> lexicographicalComparator() 返回一个按字典顺序比较两个 int 数组的比较器。 |
15 | static int max(int… array) 返回数组中的最大值。 |
16 | static int min(int… array) 返回数组中的最小值。 |
17 | static int saturatedCast(long value) 返回最接近 value 的整数值。 |
18 | static Converter <String,Integer> stringConverter()返回一个可序列化的转换器对象,该对象使用Integer.decode(java.lang.String)和Integer.toString()在字符串和整数之间进行转换。 |
19 | static int[] toArray(Collection <? extends Number> collection) 返回一个包含集合中每个值的数组,将其转换为int值,以Number.intValue()的方式进行转换。 |
20 | static byte[] toByteArray(int value) 返回value的大端表示形式,用一个4元素的字节数组表示;与ByteBuffer.allocate(4).putInt(value).array()相当。 |
21 | static Integer tryParse(String string) 将指定的字符串解析为有符号的十进制整数值。 |
继承的方法
该类继承了以下类的方法:
- java.lang.Object
Ints类的示例
使用你选择的任何编辑器创建一个名为GuavaTester.java的Java程序,放在C:/> Guava
路径下。
GuavaTester.java
import java.util.List;
import com.google.common.primitives.Ints;
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] + " ");
}
}
}
验证结果
使用 javac 编译器编译该类,步骤如下:
C:\Guava>javac GuavaTester.java
现在运行GuavaTester以查看结果。
C:\Guava>java GuavaTester
查看结果。
[1, 2, 3, 4, 5, 6, 7, 8, 9]
[ 1 2 3 4 5 6 7 8 9 ]
5 is in list? true
Min: 1
Max: 9
0 0 78 32