当前位置: 技术问答>java相关
哪位大侠能给讲讲synchronized关键字,最好能给出例子,感激不尽
来源: 互联网 发布时间:2015-10-10
本文导语: 哪位大侠能给讲讲synchronized关键字,最好能给出例子,感激不尽 | 在多线程中,用synchronized修饰一个操作,可以防止在执行期间被中断。 比如转账的操作: public synchronized void transfer (int fr...
哪位大侠能给讲讲synchronized关键字,最好能给出例子,感激不尽
|
在多线程中,用synchronized修饰一个操作,可以防止在执行期间被中断。
比如转账的操作:
public synchronized void transfer (int from,int to,int amount) {
if (accounts[from]
比如转账的操作:
public synchronized void transfer (int from,int to,int amount) {
if (accounts[from]