英文:
Java multithreading, capture updated boolean variables
问题
我想要做类似这样的事情
while (true) {
if (my_boolean) { // my_boolean被其他线程更新
做一些事情;
退出循环;
}
做另一些事情;
}
我的问题是,my_boolean会被另一个线程中的另一个方法更新。有时可以捕获到这样的更新,有时则无法。是否有一种一致的方法来解决这个问题?
英文:
I want to do something like this
while (true) {
if (my_boolean) { //my_boolean is being updated by other threads
do something;
break;
}
do something else;
}
my problem is, my_boolean is being updated by another method in another thread. Sometimes such updates can be captured, sometimes not. Is there any consistent way to work around this?
答案1
得分: 1
你可以将那个布尔值声明为 volatile
。
英文:
You can declare that boolean as volatile
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论