GO语言面试系列:(八)golang 并发安全性案例分析

Chole121 ·
struct 内部自带锁应该好些吧 type User struct { Cash int lock *sync.Mutex }
#1