扫码一下
查看教程更方便
Shorts
是原始类型 short 的实用程序类。
以下是 com.google.common.primitives.Shorts
类的声明
@GwtCompatible
public final class Shorts
extends Object
序号 | 字段 | 说明 |
---|---|---|
1 | static int BYTES | 表示原始 shorts 值所需的字节数。 |
2 | static short MAX_POWER_OF_TWO | 可以表示为 short 的两个的最大幂。 |
序号 | 方法 | 说明 |
---|---|---|
1 | static List<Short> asList(short... backingArray) | 返回由指定数组支持的固定大小列表,类似于 Arrays.asList(Object[]) 。 |
2 | static short checkedCast(long value) | 如果可能,返回等于 value 的 short 值。 |
3 | static int compare(short a, short b) | 比较两个指定的 short 值。 |
4 | static short[] concat(short[]... arrays) | 将每个提供的数组中的值返回到一个数组中。 |
5 | static boolean contains(short[] array, short target) | 如果 target 作为元素出现在数组中的任何位置,则返回 true。 |
6 | static short[] ensureCapacity(short[] array, int minLength, int padding) | 返回包含与数组相同值的数组,但保证具有指定的最小长度。 |
7 | static short fromByteArray(byte[] bytes) | 返回其 big-endian 表示存储在字节的前 2 个字节中的 short 值; 相当于 ByteBuffer.wrap(bytes).getShort() 。 |
8 | static short fromBytes(byte b1, byte b2) | 返回字节表示为给定 2 个字节的 short 值,以大端顺序排列; 相当于 Shorts.fromByteArray(new byte[] {b1, b2}) 。 |
9 | static int hashCode(short value) | 返回值的哈希码; 等于调用 ((Short) value).hashCode() 的结果。 |
10 | static int indexOf(short[] array, short target) | 返回值 target 在数组中第一次出现的索引。 |
11 | static int indexOf(short[] array, short[] target) | 返回指定 target 在数组中第一次出现的起始位置,如果不存在则返回 -1。 |
12 | static String join(String separator, short... array) | 返回一个字符串,其中包含由分隔符分隔的提供的短值。 |
13 | static int lastIndexOf(short[] array, short target) | 返回值 target 在数组中最后一次出现的索引。 |
14 | static Comparator<short[]> lexicographicalComparator() | 返回一个比较器,该比较器按字典顺序比较两个短数组。 |
15 | static short max(short... array) | 返回数组中存在的最大值。 |
16 | static short min(short... array) | 返回数组中存在的最小值。 |
17 | static short saturatedCast(long value) | 返回最接近 value 的 short 值。 |
18 | static Converter<String,Short> stringConverter() | 返回一个可序列化的转换器对象,该对象使用 Short.decode(java.lang.String) 和 Short.toString() 在字符串和短裤之间进行转换。 |
19 | static short[] toArray(Collection<? extends Number> collection) | 返回包含集合的每个值的数组,以 Number.shortValue() 的方式转换为短值。 |
20 | static byte[] toByteArray(short value) | 返回 2 元素字节数组中值的大端表示; 相当于 ByteBuffer.allocate(2).putShort(value).array() 。 |
该类继承了以下类的方法 -
在 C:/> Guava 中使用我们选择的任何编辑器创建以下 java 程序。
GuavaTester.java
import java.util.List;
import com.google.common.primitives.Shorts;
public class GuavaTester {
public static void main(String args[]) {
GuavaTester tester = new GuavaTester();
tester.testShorts();
}
private void testShorts() {
short[] shortArray = {1,2,3,4,5,6,7,8,9};
//将基元数组转换为对象数组
List<Short> objectArray = Shorts.asList(shortArray);
System.out.println(objectArray.toString());
//将对象数组转换为基元数组
shortArray = Shorts.toArray(objectArray);
System.out.print("[ ");
for(int i = 0; i< shortArray.length ; i++) {
System.out.print(shortArray[i] + " ");
}
System.out.println("]");
short data = 5;
//检查元素是否存在于基元列表中
System.out.println("5 is in list? " + Shorts.contains(shortArray, data));
//返回最小值
System.out.println("Min: " + Shorts.min(shortArray));
//返回最大值
System.out.println("Max: " + Shorts.max(shortArray));
data = 2400;
//从整数中获取字节数组
byte[] byteArray = Shorts.toByteArray(data);
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
9 96