摘要: #WaitGropu使用注意 作groutine参数时传指针 type WaitGroup struct { noCopy noCopy // 64-bit value: high 32 bits are counter, low 32 bits are waiter count. // 64-bi 阅读全文
posted @ 2021-10-03 15:20 wangzhilei 阅读(121) 评论(0) 推荐(0) 编辑
摘要: ####安全指针 ####unsafe包 ####unsafe原理 ####获取slice长度 获取map长度 #安全指针 Go 语言的函数传参都是值传递 package main import "fmt" func double(x *int) { *x += *x x = nil//x是值拷贝, 阅读全文
posted @ 2021-10-03 09:47 wangzhilei 阅读(426) 评论(0) 推荐(0) 编辑