08 2018 档案
摘要:AtomicInteger类的理解与使用 首先看两段代码,一段是Integer的,一段是AtomicInteger的,为以下: 以下是AtomicInteger的: 以上两段代码,在使用Integer的时候,必须加上synchronized保证不会出现并发线程同时访问的情况,而在AtomicInte
阅读全文
摘要:java8引入了一套全新的时间日期API 新的时间及日期API位于java.time中java.time包中的是类是不可变且线程安全的。 下面是一些关键类 LocalDateTime //2018-05-12 08:30:30 LocalDate //2018-5-12 LocalTime //08
阅读全文