为了账号安全,请及时绑定邮箱和手机立即绑定

为什么不使用锁同步日志包

为什么不使用锁同步日志包

Go
红颜莎娜 2021-12-07 14:49:34
我正在阅读日志源代码,我在这里很困惑:// 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 回答

?
慕码人8056858

TA贡献1803条经验 获得超6个赞

SetOutput正在改变std默认记录器的内部状态。

log.SetFlags呼吁SetFlagsstd,已经锁定记录器本身。


查看完整回答
反对 回复 2021-12-07
  • 1 回答
  • 0 关注
  • 157 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信