我点击了 https://blog.golang.org/gob 链接。并编写了一个示例,其中结构包含所有字符串数据。这是我的示例:
package main
import (
"bytes"
"encoding/gob"
"fmt"
"log"
)
type P struct {
X string
a string
Name string
}
type Q struct {
X string
a string
Name string
}
func main() {
// Initialize the encoder and decoder. Normally enc and dec would be
// bound to network connections and the encoder and decoder would
// run in different processes.
var network bytes.Buffer // Stand-in for a network connection
enc := gob.NewEncoder(&network) // Will write to network.
dec := gob.NewDecoder(&network) // Will read from network.
// Encode (send) the value.
err := enc.Encode(P{"My string", "Pythagoras","a string"})
if err != nil {
log.Fatal("encode error:", err)
}
// Decode (receive) the value.
var q Q
err = dec.Decode(&q)
if err != nil {
log.Fatal("decode error:", err)
}
fmt.Println(q.X,q.Name)
fmt.Println(q.a)
}
玩戈朗:https://play.golang.org/p/3aj0hBG7wMj
预期输出:
My string a string
Pythagoras
实际输出
My string a string
我不知道为什么输出中缺少“毕达哥拉斯”字符串。当我有多个字符串,结构中的整数数据并使用gob处理时,我观察到类似的行为。
如何处理字符串?我的程序中存在什么问题?
繁星点点滴滴
明月笑刀无情
紫衣仙女
收到一只叮咚
相关分类