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