标签:
AtomicInteger,一个提供原子操作的Integer的类。在Java语言中,++i和i++操作并不是线程安全的,在使用的时候,不可避免的会用到synchronized关键字。而AtomicInteger则通过一种线程安全的加减操作接口。
import java.text.SimpleDateFormat;
import java.util.Date;标签:
原文地址:http://blog.csdn.net/wuhenzhangxing/article/details/45576417