摘要: package main import ( "fmt" "time" ) type Pool struct { Queue chan func() error; RuntineNumber int; Total int; Result chan error; FinishCallback func(); } //初始化 func (self *Pool) Init(runt... 阅读全文
posted @ 2017-02-06 11:35 悲惨的大爷 阅读(10515) 评论(0) 推荐(0) 编辑