企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] # 简介 TimeUnit是java.util.concurrent包下面的一个类,表示给定单元粒度的时间段 主要作用 * 时间颗粒度转换 * 延时 # 常用的颗粒度 ~~~ TimeUnit.DAYS //天 TimeUnit.HOURS //小时 TimeUnit.MINUTES //分钟 TimeUnit.SECONDS //秒 TimeUnit.MILLISECONDS //毫秒 ~~~ # 时间颗粒度转换 ~~~ public long toMillis(long d) //转化成毫秒 public long toSeconds(long d) //转化成秒 public long toMinutes(long d) //转化成分钟 public long toHours(long d) //转化成小时 public long toDays(long d) //转化天 ~~~ 例子 ~~~ //1天有24个小时 1代表1天:将1天转化为小时 System.out.println( TimeUnit.DAYS.toHours( 1 ) ); //结果: 24 //1小时有3600秒 System.out.println( TimeUnit.HOURS.toSeconds( 1 )); //结果3600 //把3天转化成小时 System.out.println( TimeUnit.HOURS.convert( 3 , TimeUnit.DAYS ) ); //结果是:72 ~~~ # 延时 ~~~ TimeUnit.SECONDS.sleep( 5 ); ~~~ 内部也是Thread.sleep