-1
在我的圍棋程序,我編碼[]與採空區採空區解碼器試圖解碼到非指針
buf := new(bytes.Buffer)
enc := gob.NewEncoder(buf)
//data is []byte
buf.Reset()
enc.Encode(data)
但得到字節的數據「坯解碼器試圖解碼到非指針」時我試圖解碼
buf := new(bytes.Buffer)
d := gob.NewDecoder(buf)
d.Decode(data)
log.Printf("%s", d)
它說'數據'不是一個指針。你有沒有嘗試過使用指針? – JimB
我認爲這只是一個錯字,應該是日誌打印中的數據而不是d;( – irom