我正在阅读日志源代码,我在这里很困惑:// SetOutput sets the output destination for the standard logger.func SetOutput(w io.Writer) { std.mu.Lock() defer std.mu.Unlock() std.out = w}// Flags returns the output flags for the standard logger.func Flags() int { return std.Flags()}// SetFlags sets the output flags for the standard logger.func SetFlags(flag int) { std.SetFlags(flag)}为什么SetOutPut用mu锁而SetFlags不用mu锁?
- 1 回答
- 0 关注
- 157 浏览
添加回答
举报
0/150
提交
取消