Guava Chars 工具类Chars 是基本 char 类型的实用工具类。一、类声明以下是 com.google.common.primitives.Chars 类的声明:@GwtCompatible(emulated=true)
public final class Chars
extends&nbs...
Guava Booleans 工具类Booleans 是布尔型基本的实用工具类。一、类声明以下是 com.google.common.primitives.Booleans 类的声明:@GwtCompatible
public final class Booleans
extends Object二、方法官方文档:h...
Guava 数学运算工具类Java 中的 Math 给我们提供了很多的数学运算,这简化了很多的操作,但是难免的,在一些具体定义和边界限制上有一定的瑕疵,因此,Guava 中对 Math 中的大部分实体进行了重新的封装,方法进行了重新的整理,更好的添加了溢出的限制,以及纠正了一些有争议的方法。而且,他还添加了一些更有用的方法,这使得我们在以后的数学运算中,更加的得心应手。一、为什么使用Guava MathGuava Math 针对各种不常...
Guava IntMath 工具类IntMath 提供整型的实用方法。一、类声明以下是 com.google.common.math.IntMath 类的声明:@GwtCompatible(emulated=true)
public final class IntMath
extends Object二、类方法官方文...
Guava LongMath 工具类LongMath 提供 long 基础类型的实用方法。一、类声明以下是 com.google.common.math.LongMath 类的声明:@GwtCompatible(emulated=true)
public final class LongMath
extends Ob...
Guava BigIntegerMath 工具类BigIntegerMath 提供 BigInteger 的实用方法。一、类声明以下是 com.google.common.math.BigIntegerMath 类的声明:@GwtCompatible(emulated=true)
public final class BigIntegerMath
&nb...
Guava DoubleMath 工具类DoubleMath 提供 double 的实用方法。一、类声明以下是 com.google.common.math.BigIntegerMath 类的声明:@GwtCompatible(emulated=true)
public final class DoubleMath
&...
Guava Spiltter —— 拆分器Splitter 提供了各种方法来处理分割操作字符串,对象等。一、类声明以下是 com.google.common.base.Splitter 类的声明:@GwtCompatible(emulated=true)
public final class Splitter
extends ...