1、多任务资源竞争问题
示例:
package main import ( "fmt" "time" ) //定义一个打印机,参数为字符串,按每个字符打印 //打印机属于公共资源 func Printer(str string) { for _, data := range str { fmt.Printf("%c", data) time.Sleep(time.Second) } fmt.Printf("\n") } func person1() { Printer("hello") } func person2() { Printer("world") } func main() { //新建2个协程,代表2个人,2个人同时使用打印机 go person1() go person2() //特地不让主协程结束,死循环 for { } }
执行结果:
hweorllldo
程序执行过程: 一人打印一个字符,这样就乱了。
原文地址:https://www.cnblogs.com/nulige/p/10276815.html
时间: 2024-11-10 14:34:28