首页 > TAG信息列表 > ExcuteResult
Golang实现线程安全的Map
1、使用互斥锁实现 2、Set\Get入口加锁 package main import ( "fmt" "sync" "time" ) var wg sync.WaitGroup // ExcuteResult 执行结果集 type ExcuteResult struct { data map[string]interface{} mux *sync.Mutex } // NewExcuteRGolang实现线程安全的Map
1、使用互斥锁实现 2、Set\Get入口加锁 package main import ( "fmt" "sync" "time" ) var wg sync.WaitGroup // ExcuteResult 执行结果集 type ExcuteResult struct { data map[string]interface{} mux *sync.Mutex } // NewExcuteR