什么是线程安全性 当多个线程访问某个类时,这个类始终都能表现出正确的行为,那么就称这个类是线程安全的。线程安全性最核心的概念是正确性。
原子变量:多线程中,执行将计数器+1这样的操作,容易产生竞态条件,可以使用原子变量(AtomicLong, AtomicInteger, AtomicReference),代码样例:
public class CountingFactorizer implements Servlet {
private final AtomicLong count =
new AtomicLong();
public long getCount(){
return count.get();
}
@Override
public void service(ServletRequest req, ServletResponse res)
throws ServletException, IOException {
System.out.println(
"test begin");
count.incrementAndGet();
System.out.println(
"test end");
}
}
阅读扩展:原子变量
内置锁synchronized是支持重入的,当某个线程试图获取一个已经由它自己持有的锁,那么这个请求就会成功。“重入”意味着获取锁操作的粒度是“线程”,而不是调用。 使用synchronized可以保证原子性,但可能引入活跃性问题或性能问题。 阅读扩展:synchronized