SimpleDateFormat的使用以及注意事项

1.SimpleDateFormat是线程不安全的

如下代码在单线程的环境是安全的但是在多线程的环境中绝对是不安全的

public class SimpleDateFormatTest {
	private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
	public void format1(){
		sdf.format(new Date());
	}
	public void format2(){
		sdf.format(new Date());
	}
}

接下来证明它不是线程安全的:
package org.sh.testpaper;

import java.text.SimpleDateFormat;
import java.util.Date;

public class SimpleDateFormatTest {
	public static void main(String[] args) {
		Date date1 = new Date();
		Date date2 = new Date(date1.getTime()+1000*24*60*60);
		System.out.println("date1="+date1);
		System.out.println("date2="+date2);
		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
		SDFThread1 s1 = new SDFThread1(sdf, date1);
		SDFThread2 s2 = new SDFThread2(sdf, date2);
		new Thread(s1).start();
		new Thread(s2).start();
	}
}
class SDFThread1 implements Runnable{
	
	private SimpleDateFormat sdf ;
	private Date date;
	public SDFThread1(SimpleDateFormat sdf,Date date){
		this.sdf = sdf;
		this.date = date;
	}
	@Override
	public void run() {
		while(true){
			String strDate = sdf.format(date);
			System.out.println("thread1:"+strDate);
			if("2014-05-05".equals(strDate)){
				System.out.println("Error:"+strDate);
				System.exit(0);
			}
		}
	}
	
}
class SDFThread2 implements Runnable{
	
	private SimpleDateFormat sdf ;
	private Date date;
	public SDFThread2(SimpleDateFormat sdf,Date date){
		this.sdf = sdf;
		this.date = date;
	}
	@Override
	public void run() {
		while(true){
			String strDate = sdf.format(date);
			System.out.println("thread2:"+strDate);
			if("2014-05-04".equals(strDate)){
				System.out.println("Error:date1"+strDate);
				System.exit(0);
			}
		}
	}
	
}

测试结果:

date1=Sun May 04 20:08:46 CST 2014
date2=Mon May 05 20:08:46 CST 2014
thread1:2014-05-05
thread2:2014-05-05
Error:2014-05-05
thread2:2014-05-05
thread2:2014-05-05
thread2:2014-05-05
thread2:2014-05-05
thread2:2014-05-05

从测试结果可以看出SimpleDateFormat是线程不安全的。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值