加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test3.go 694 Bytes
一键复制 编辑 原始数据 按行查看 历史
tuboyou 提交于 2020-10-23 16:42 . 试验方法2,设计中
package main
import (
// "github.com/briandowns/spinner"
"github.com/qianlnk/pgbar"
"sync"
"time"
)
func main() {
// pgb := pgbar.New("多线程进度条")
// pgbar.Println("进度条1")
// b := pgb.NewBar("1st", 20000)
// pgbar.Println("进度条2")
// b2 := pgb.NewBar("2st", 10000)
// pgbar.Println("进度条3")
// b3 := pgb.NewBar("3st", 30000)
// b.SetSpeedSection(900, 100)
// b2.SetSpeedSection(900, 100)
// b3.SetSpeedSection(900, 100)
pgbar.Println("独立进度条")
b4 := pgbar.NewBar(0, "tttst", 50)
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
for i := 0; i < 50; i++ {
b4.Add()
time.Sleep(time.Second / 300)
}
}()
wg.Wait()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化