Golang 并发数据冲突检测器与并发安全

检测到冲突时,会按照以下格式打印冲突报告,它包含堆栈跟踪信息,以及协程编号,如:➜ dataRace git: ✗ go run -race main.go==================WARNING: DATA RACE  //警告: 数据冲突Write at 0x00c000124180 by goroutine 7: //普通协程写操作 runtime.mapassign_faststr /usr/local/go/src/runtime/map_faststr.go:202 +0x0 main.main.func1 /Users/xb/gitlab/go/go_core_program/sync/dataRace/main.go:9 +0x5d。