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

Google Guava 快速入门.jpg

Guava Floats 工具类

Floats 是 float 基本类型的实用工具类。

一、类声明

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

@GwtCompatible(emulated=true)
public final class Floats
    extends Object

二、字段

修饰符和类型字段说明
static intBYTES 
所需要的字节数来表示一个原始float的值.

三、方法

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

修饰符和类型方法说明
static List<Float>asList(float... backingArray) 
基本类型数组转化为包装类List.
static intcompare(float a, float b) 
比较两个float值的大小.
static float[]concat(float[]... arrays) 
将多个float数组拼接成一个数组.
static floatconstrainToRange(float value, float min, float max) 
如果一个数字在某个范围内则输出该数字,否则输出范围的最大值或最小值.
static booleancontains(float[] array, float target) 
判断一个float数是否在float数组内.
static float[]ensureCapacity(float[] array, int minLength, int padding) 
确保数组拥有一个最小的长度,如果array长度小于minLength,则会返回一个元素值与array相同,但是length = minLength + padding的数组.
static inthashCode(float value) 
返回float值的hashCode(hashCode对应包装类型Float对象的hashCode).
static intindexOf(float[] array, float target) 
返回一个float值在数组中的第一个index,没匹配到返回-1.
static intindexOf(float[] array, float[] target) 
返回float数组在另一个数组中的第一个index,没匹配到返回-1.
static booleanisFinite(float value) 
判断一个float值是否是有限的(-1.0F / 0.0 < value < 1.0F / 0.0).
static Stringjoin(String separator, float... array) 
通过连接符连接数组转成String.
static intlastIndexOf(float[] array, float target) 
返回一个int值在数组中的最后一个index,没匹配到返回-1.
static Comparator<float[]>lexicographicalComparator() 
返回一个float[]比较器,比较规则是从index0开始比较两个数组对应index上的元素大小,返回比较结果到其中一个数组结束都完全一致,则通过长度比较,长度大的那个数组大.
static floatmax(float... array) 
返回一个float数组的最大元素.
static floatmin(float... array) 
返回一个int数组的最小元素.
static voidreverse(float[] array) 
将数组反转.
static voidreverse(float[] array, int fromIndex, int toIndex) 
将数组指定范围的元素反转(范围左闭右开).
static voidsortDescending(float[] array) 
数组按逆序排序.
static voidsortDescending(float[] array, int fromIndex, int toIndex) 
将一定范围内的数组按照逆序排序(范围左闭右开).
static Converter<String,Float>stringConverter() 
返回String与Float的转换器.
static float[]toArray(Collection<? extends Number> collection) 
List转数组.
static @Nullable FloattryParse(String string) 
如果String符合Float规范,将String转化为Float,否则返回null.

四、测试类

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

五、相关文章



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

点  赞 (0) 打  赏
分享到: