1、gob只能导出public大写字段,不能导出private小写字段。

2、gob导出struct或内嵌继承的struct时,struct体内至少要有一个可导出字段。

  1. import (
  2. "bytes"
  3. "encoding/gob"
  4. )
  5. //深拷贝
  6. func DeepCopy(dst, src interface{}) error {
  7. var buf bytes.Buffer
  8. if err := gob.NewEncoder(&buf).Encode(src); err != nil {
  9. return err
  10. }
  11. return gob.NewDecoder(bytes.NewBuffer(buf.Bytes())).Decode(dst)
  12. }