JDK7在语法上的几处小变化(3)

发布时间:2021-06-05

JDK7在语法上的几处小变化

MPTY_OBJECT_ARRAY

甚至通过Class类型来取空数组。

Boolean.class.emptyArray();

9, 数组长度判定工具类,空指针安全
boolean Arrays.isEmpty(Object[] array)
int Arrays.size(Object[] array)

10, 集合长度判定工具类,空指针安全
boolean Collections.isEmpty(Collection coll)
int Collections.size(Collection coll)
boolean Collections.isEmpty(Map map)
int Collections.size(Map map)

11, 空指针安全的ClassName获取
String Class.getName(Class cls)
String Class.getSimpleName(Class cls)
String Class.getPackageName(Class cls)

12, 可以直接解析locale信息字符串的工具方法
Locale parse(String localeStr)

13, 提供根据语言取国家列表或根据国家取语言列表的工具方法
List Locale.countriesByLanguage(String langaugeStr)
List nguagesByCountry(String countryStr)

14, 安全的加减乘除
int Math.safeToInt(long value)
int Math.safeNegate(int value)
long Math.safeNegate(long value)
int Math.safeAdd(int value1, int value2)
long Math.safeAdd(long value1, int value2)
long Math.safeAdd(long value1, long value2)
int Math.safeSubtract(int value1, int value2)
long Math.safeSubtract(long value1, int value2)
long Math.safeSubtract(long value1, long value2)
int Ma
th.safeMultiply(int value1, int value2)
long Math.safeMultiply(long value1, int value2)
long Math.safeMultiply(long value1, long value2)



精彩图片

热门精选

大家正在看