Skip to content

Commit

Permalink
Update 123.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jackzhenguo authored Sep 9, 2022
1 parent e8e698d commit 4e58d55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions md/123.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ t8 adds a to 1: 9
t9 adds a to 1: 10
```

一起正常,其实这已经是单线程顺序执行了,就本例子而言,已经失去多线程的价值,并且还带来了因为线程创建开销,浪费时间的副作用。
一切正常,其实这已经是单线程顺序执行了,就本例子而言,已经失去多线程的价值,并且还带来了因为线程创建开销,浪费时间的副作用。

程序中只有一把锁,通过 `try...finally`还能确保不发生死锁。但是,当程序中启用多把锁,还是很容易发生死锁。

注意使用场合,避免死锁,是我们在使用多线程开发时需要注意的一些问题。

<center>[上一个例子](122.md) [下一个例子](124.md)</center>
<center>[上一个例子](122.md) [下一个例子](124.md)</center>

0 comments on commit 4e58d55

Please sign in to comment.