simpledateformat线程为什么不安全

public static void main(String[] args) {Timer timer = new Timer();TimerTask timerTask = new My

simpledateformat线程为什么不安全

原因:在多线程环境下,当多个线程同时使用相同的SimpleDateFormat对象(如static修饰)的话,如调用format方法时,多个线程会同时调用calender.setTime方法,导致time被别的线程修改,因此线程是不安全的。本教程操作环境:windows7系统、java8版、DELL G3电脑。线程不安全验证:/*** SimpleDateFormat线程安全测试* 〈功能详细描述