第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

golang io.writer 寫完字符串后換行

golang io.writer 寫完字符串后換行

Go
米脂 2023-06-26 17:16:18
我有以下代碼,使用包來繪制進(jìn)度條type tmpStruct struct {}func (t *tmpStruct) Write(p []byte) (n int, err error) {? ? fmt.Fprintf(os.Stdout, "%s", string(p))? ? return len(p), nil}func demoLoadingBarCount(maximumInt int) {? ? buf := tmpStruct{}? ? if nBuf, ok := interface{}(&buf).(io.Writer); ok {? ? ? ? bar := progressbar.NewOptions(? ? ? ? ? ? maximumInt,? ? ? ? ? ? progressbar.OptionSetTheme(progressbar.Theme{Saucer: "█", SaucerPadding: "-", BarStart: ">", BarEnd: "<"}),? ? ? ? ? ? progressbar.OptionSetWidth(100),? ? ? ? ? ? progressbar.OptionSetWriter(nBuf),? ? ? ? )? ? ? ? for i := 0; i < maximumInt; i++ {? ? ? ? ? ? bar.Add(1)? ? ? ? ? ? time.Sleep(10 * time.Millisecond)? ? ? ? }? ? }}一切正常,除了最后沒有換行,正如您在此處看到的那樣?我無法在 Write 函數(shù)中添加新行字符,因?yàn)檫@會(huì)導(dǎo)致在將每個(gè)字節(jié)推送到寫入器后將其添加到新行。有什么巧妙的方法可以做到這一點(diǎn)嗎?編輯:我想要在進(jìn)度條之后和下一行打印之前添加新行
查看完整描述

1 回答

?
嚕嚕噠

TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超7個(gè)贊

您所問問題的簡單答案就是在進(jìn)度條完成后打印一個(gè)額外的換行符:


func demoLoadingBarCount(maximumInt int) {

? ? buf := &tmpStruct{}

? ? bar := progressbar.NewOptions(

? ? ? ? maximumInt,

? ? ? ? progressbar.OptionSetTheme(progressbar.Theme{Saucer: "█", SaucerPadding: "-", BarStart: ">", BarEnd: "<"}),

? ? ? ? progressbar.OptionSetWidth(100),

? ? ? ? progressbar.OptionSetWriter(buf),

? ? )

? ? for i := 0; i < maximumInt; i++ {

? ? ? ? bar.Add(1)

? ? ? ? time.Sleep(10 * time.Millisecond)

? ? }

? ? fmt.Fprintf(buf, "\n") // <---- Add this

}

查看完整回答
反對 回復(fù) 2023-06-26
  • 1 回答
  • 0 關(guān)注
  • 252 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)