在我正在开发的应用程序中,我发现了以下代码片段:
public class MyClass {
private AtomicBoolean atomicBoolean = new AtomicBoolean(false);
public void Execute() {
// Whole lot of business logic
// ....
synchronized (this.atomicBoolean) {
// Want to make sure that execution is stopped if Stop() was called
if (this.atomicBoolean.get()) {
throw new SpecificException("...");
}
// Some more business logic...
}
}
public void Stop() {
synchronized (this.atomicBoolean) {
this.atomicBoolean.set(true);
}
}
}
根据 FindBugs 的说法,这是不正确的,因为我不能AtomicBoolean
一起使用synchronized
并期望它阻止对象。
我的问题是:重写此方法的正确方法是什么?我已经阅读了有关将锁定对象与布尔属性一起使用的信息,但是为该锁定引入两个新属性似乎有点笨拙。
编辑:正如下面的评论中所述:我认为目的是在两个synchronized
块中,AtomicBoolean
不能更改,并且当一个线程位于其中一个synchronized
块中时,不能输入其他这样的块。