2021年5月31日
摘要: package main import ( "fmt" "time" ) func main() { c := make(chan int) // 不使用带缓冲区的通道 go send(c) go recv(c) time.Sleep(3 * time.Second) close(c) } // 只 阅读全文
posted @ 2021-05-31 20:30 kevin_yang123 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 测试用例 test.go package test // MakeSliceWithPreAlloc 不预分配 func MakeSliceWithoutAlloc() []int { var newSlice []int for i := 0; i < 100000; i++ { newSlice 阅读全文
posted @ 2021-05-31 18:10 kevin_yang123 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 一个项目只有创建一个主模块 阅读全文
posted @ 2021-05-31 11:05 kevin_yang123 阅读(166) 评论(0) 推荐(0) 编辑