JUC——TimeUnit工具类
Posted itermis
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JUC——TimeUnit工具类相关的知识,希望对你有一定的参考价值。
TimeUnit工具类
在java.util.concurrent开发包里面提供有一个TimeUnit类,这个类单独看它的描述是一个时间单元类。该类是一个枚举类,这也是juc开包里面唯一的一个枚举类。
public enum TimeUnit extends Enum<TimeUnit>
这个类之中支持有:日(DAYS)、时(HOURS)、分(MINUTS)、秒(SECONDS)、毫秒(MILLISECONDS)、微秒(MICROSECONDS)、纳秒(NANOSECONDS).
范例:进行休眠控制,休眠2秒
- 使用Thread.sleep() 方法处理
package so.strong.concurrents; public class StrongDemo { public static void main(String[] args) throws Exception{ System.out.println("[sleep start]"+System.currentTimeMillis()); Thread.sleep(2*1000); System.out.println("[sleep end]"+System.currentTimeMillis()); } }
- 直接使用TimeUnit类来处理
package so.strong.concurrents; import java.util.concurrent.TimeUnit; public class StrongDemo { public static void main(String[] args) throws Exception{ System.out.println("[sleep start]"+System.currentTimeMillis()); TimeUnit.SECONDS.sleep(2); System.out.println("[sleep end]"+System.currentTimeMillis()); } }
发现TimeUnit可以实现更加精确的时间处理操作。除了这一功能之外,在TimeUnit里面最为重要的特点是可以方便的进行各种时间单位的转换,它提供了一个convert()方法
// sourceDuration long类型时间数字 // sourceUnit 目标的转换类型 public long convert(long sourceDuration,TimeUnit sourceUnit)
范例:转换一小时为毫秒
package so.strong.concurrents; import java.util.concurrent.TimeUnit; public class StrongDemo { public static void main(String[] args) throws Exception{ long time = TimeUnit.MILLISECONDS.convert(1,TimeUnit.HOURS); System.out.println("1小时转为毫秒:"+time); } }
范例:3天后的日期
package so.strong.concurrents; import java.text.SimpleDateFormat; import java.util.Date; import java.util.concurrent.TimeUnit; public class StrongDemo { public static void main(String[] args) throws Exception { long time = TimeUnit.MILLISECONDS.convert(3, TimeUnit.DAYS); System.out.println("3天转为毫秒:" + time); long threeTime = System.currentTimeMillis() + time; //当前时间的毫秒数+3天后的毫秒数 System.out.println("3天后的日期:" + new Date(threeTime)); System.out.println("3天后的日期:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(threeTime))); } }
以上是关于JUC——TimeUnit工具类的主要内容,如果未能解决你的问题,请参考以下文章
java--JUC--公平锁,非公平锁,可重入锁,自旋锁,死锁
JUC并发编程 共享模式之工具 线程池 JDK 提供的线程池工具类 -- ThreadPoolExecutor(关闭线程池: shutdownshutdownNow)