简单Go线程池实现线程池目前实现:Array blocking queue有界队列, 超过队列容量时新工作入队直接失败Linked blocking queue无界队列, 新工作入队时一直等待直到入队成功同步阻塞队列与优先级队列待实现使用方式见pool_test.go