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

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

go-staticcheck:應(yīng)使用簡(jiǎn)單的通道發(fā)送/接收,而不是選擇單個(gè)案例

go-staticcheck:應(yīng)使用簡(jiǎn)單的通道發(fā)送/接收,而不是選擇單個(gè)案例

Go
catspeake 2022-09-05 09:26:31
我使用的是Go 1.16.4。我正在嘗試處理這樣的代碼:func (pool *myConnPool) GetPooledConnection() (*myConnection, error) {    go func() {        conn, err := pool.createConn()        if err != nil {            return        }        pool.connections <- conn    }()    select { // <<<< golint warning here    case conn := <-pool.connections:        return pool.packConn(conn), nil    }}我得到了以下Go linter警告:在代碼中標(biāo)記的點(diǎn)。任何人都可以解釋如何解決這個(gè)問(wèn)題嗎?我對(duì)圍棋頻道還不太熟悉。should use a simple channel send/receive instead of select with a single case (S1000)
查看完整描述

1 回答

?
慕勒3428872

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

linter告訴你,你的使用是沒(méi)有意義的,只有一個(gè)。要解決此問(wèn)題,請(qǐng)?zhí)鎿Q以下內(nèi)容:selectcase


select {

case conn := <-pool.connections:

    return pool.packConn(conn), nil

}

跟:


conn := <-pool.connections

return pool.packConn(conn), nil

甚至:


return pool.packConn(<-pool.connections), nil


查看完整回答
反對(duì) 回復(fù) 2022-09-05
  • 1 回答
  • 0 關(guān)注
  • 1225 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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