JavaSE-Java工具类
推荐先阅读
:JavaSE
BigDicimal类
public static BigDecimal valueOf(double val);// 包装浮点数成为大数据对象。创建对象的方式(最好的方式:) |
package com.zx._05BigDecimal计算浮点型; |
System系统类
public static void exit(int status);// 终止JVM虚拟机,非0是异常终止。 |
package com.zx._04System系统类的使用; |
java.lang.Math
public static int abs(int a); // 获取参数a的绝对值: |
java.time.LocalDateTime
LocalDateTime currentTime = LocalDateTime.now(); // 获取当前的日期时间 |
️SimpleDateFormat
public String format(Date date);// 可以把日期对象格式化成我们喜欢的时间形式,返回的是字符串! |