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

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

不能在 golang 中使用范圍

不能在 golang 中使用范圍

Go
寶慕林4294392 2022-08-01 10:24:15
由于某種原因,我無(wú)法用范圍迭代var sessionStore = make(FileSystemStore)func LsSessionsCommand(_ []string, _ *string, _ *memory.FileSystem){    w := tabwriter.NewWriter(os.Stdout, 1, 1, 1, ' ', 0)    fmt.Fprint(w, "id\tstored time\n")        for key, val := range sessionStore {        // never reaches here        t := time.Unix(val.Stored, 0)        createdTime := fmt.Sprintf("%d:%d %d/%d/%d", t.Hour(), t.Minute(), t.Day(), t.Month(), t.Year())        _, err := fmt.Fprintf(w, "%s\t%s\n", key, createdTime)        if err != nil {            fmt.Printf("unable to list sessions: %v", err)        }    }    err := w.Flush()    if err != nil {        fmt.Printf("unable to list sessions: %v", err)    }}sessionStore的typeFileSystemStoretype FileSystemStore map[string]FileSystemStoreEntrytype FileSystemStoreEntry struct {    FS FileSystem    Stored int64}添加到datasessionStorefunc StashSession(memfs memory.FileSystem, id string) {    s := sessionStore[id]    s.FS = memfs    s.Stored = time.Now().Unix()    memfs.ReplaceFS(memory.CreateMemoryFileSystem().MFileSystem)}讀數(shù)datafunc CollectSession(memfs memory.FileSystem, id string, stashCurrent bool, newid string) {    s := sessionStore[id]    fs := s.FS.MFileSystem    if stashCurrent {        s.FS = memfs    }    memfs.ReplaceFS(fs)}我可以和數(shù)據(jù),但不能迭代它。當(dāng)我調(diào)用輸出時(shí),我得到它只是永遠(yuǎn)不會(huì)到達(dá)范圍函數(shù)的主體。readwritesessionStoreLsSessionsCommand()id    stored time我先叫函數(shù),再叫函數(shù)StashSessionLsSessionsCommand
查看完整描述

1 回答

?
慕田峪4524236

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

我看到的是,您的保存邏輯是錯(cuò)誤的,我懷疑您無(wú)法迭代地圖,因?yàn)樗鼘?shí)際上是空的。


這里


func StashSession(memfs memory.FileSystem, id string) {

    s := sessionStore[id]

    s.FS = memfs

    s.Stored = time.Now().Unix()

    //...

}

您沒(méi)有在地圖中添加新元素。為此,您需要:


sessionStore[id] = FileSystemStoreEntry{

    FS: memfs,

    Stored: time.Now().Unix(),

    //....

}


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

添加回答

舉報(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)