摘要: 本篇文章我们用Go封装一个无等待锁库。文章参考自:https://github.com/brewlin/net-protocol 1.锁的封装 type Mutex struct { v int32 ch chan struct{} } 2.锁的初始化 func (m *Mutex) Init() 阅读全文
posted @ 2023-02-26 23:09 qxcheng 阅读(40) 评论(0) 推荐(0) 编辑