摘要:
io.Reader 解析 - 简书 https://www.jianshu.com/p/03db37ca3249 简介 io.Reader 是一个 Interface 类型,功能非常强大,在任何需要读的地方我们都尽量使用它。先来看下它的原型: type Reader interface { Read 阅读全文
摘要:
a 阅读全文
摘要:
1、 并发下载图片的goroutine数为CPU数加1 package goroutin import ( "fmt" "io" "net/http" "os" "sync" ) func dlImg(threadPool, batchNum int) { var wg sync.WaitGroup 阅读全文