1. TimeUnit在Java里面为了进一步简化这种时间的计算管理,提供了一个专属的TimeUnit工具类,该类是一个枚举类
public enum TimeUnit extends Enum<TimeUnit>
枚举类的特点:
2022-10-22