Google Guava 快速入门 —— 【原生类型工具】Longs 类

Google Guava 快速入门.jpg

Guava Longs 工具类

Longs 是基本类型 long 的实用工具类。

一、类声明

以下是 com.google.common.primitives.Longs 类的声明:

@GwtCompatible
public final class Longs
    extends Object

二、字段

修饰符和类型字段说明
static intBYTES 
所需要的字节数来表示一个原始long的值.
static longMAX_POWER_OF_TWO 
两个最大的幂可以被表示为long.

三、方法

官方文档:https://google.github.io/guava/releases/27.0.1-jre/api/docs/com/google/common/primitives/Longs.html

修饰符和类型方法说明
static List<Long>asList(long... backingArray) 
基本类型数组转化为包装类List.
static intcompare(long a, long b) 
比较两个long值的大小.
static long[]concat(long[]... arrays) 
将多个long数组拼接成一个数组.
static longconstrainToRange(long value, long min, long max) 
如果一个数字在某个范围内则输出该数字,否则输出范围的最大值或最小值.
static booleancontains(long[] array, long target) 
判断一个long值是否在long数组内.
static long[]ensureCapacity(long[] array, int minLength, int padding) 
确保数组拥有一个最小的长度,如果array长度小于minLength,则会返回一个元素值与array相同,但是length = minLength + padding的数组.
static longfromByteArray(byte[] bytes) 
通过byte数组前八个元素转long值.
static longfromBytes(byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7, byte b8) 
通过八个byte元素转long值.
static inthashCode(long value) 
返回long值的hashCode(hashCode = (int)(value ^ value >>> 32)).
static intindexOf(long[] array, long target) 
返回一个long值在数组中的第一个index,没匹配到返回-1.
static intindexOf(long[] array, long[] target) 
返回long数组在另一个数组中的第一个index,没匹配到返回-1.
static Stringjoin(String separator, long... array) 
通过连接符连接数组转成String.
static intlastIndexOf(long[] array, long target) 
返回一个long值在数组中的最后一个index,没匹配到返回-1.
static Comparator<long[]>lexicographicalComparator() 
返回一个long[]比较器,比较规则是从index0开始比较两个数组对应index上的元素大小,返回比较结果到其中一个数组结束都完全一致,则通过长度比较,长度大的那个数组大.
static longmax(long... array) 
返回一个long数组的最大元素.
static longmin(long... array) 
返回一个long数组的最小元素.
static voidreverse(long[] array) 
将数组反转.
static voidreverse(long[] array, int fromIndex, int toIndex) 
将数组指定范围的元素反转(范围左闭右开).
static voidsortDescending(long[] array) 
数组按逆序排序.
static voidsortDescending(long[] array, int fromIndex, int toIndex) 
将一定范围内的数组按照逆序排序(范围左闭右开).
static Converter<String,Long>stringConverter() 
返回String与Long的转换器.
static long[]toArray(Collection<? extends Number> collection) 
List转数组.
static byte[]toByteArray(long value) 
long值转byte数组(byte数组长度为8).
static @Nullable LongtryParse(String string) 
十进制String转Long , 如果String值存在非法字符,转为null.
static @Nullable LongtryParse(String string, int radix) 
radix进制String转Long , 如果String值存在非法字符,转为null.

四、测试类

测试方法与 Ints 中的方法类似,不过多说明,详见 Ints 文章

五、相关文章



未经允许请勿转载:程序喵 » Google Guava 快速入门 —— 【原生类型工具】Longs 类

点  赞 (0) 打  赏
分享到: