golang 中 鎖的錯誤的用法會致使死鎖。

package main import ( "sync" "time" . "github.com/soekchl/myUtils" ) var mux sync.RWMutex func tt() { Notice() mux.Lock() // 3 Notice() defer mux.Unlock() time.Sleep(time.Second * 5) } f
相關文章
相關標籤/搜索