gpt4 book ai didi

java - 我的函数需要同步吗?

转载 作者:行者123 更新时间:2023-12-01 07:06:44 24 4
gpt4 key购买 nike

我将使用一个静态变量来实现多线程。当线程运行时,该变量将被更新。更新过程将由updateModel函数完成。这是我的代码片段

public static int total = 0;
...
run(){
// there will be calculation before update value ex: int ext = this.total/10
updateModel();
}

synchronized void updatedModel(){
this.total += 1;
}

updateModel需要同步吗?

最佳答案

你在这里做错了,你使用this引用来同步静态变量,因为方法updatedModel()是实例。 无论如何它都不是线程安全的!

使用静态引用来同步静态内容或使该方法updatedModel()静态

关于java - 我的函数需要同步吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22191728/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com