type TestContent struct {
x string
}
//CalculateHash hashes the values of a TestContent
func (t TestContent) CalculateHash() ([]byte, error) {
h := sha256.New()
if _, err := h.Write([]byte(t.x)); err != nil {
return nil, err
}
return h.Sum(nil), nil
}
在声明的函数CalculateHash()中,为什么要t TestContent在函数名之前写一个数据类型?返回类型不应该写在函数名之后吗?
MMMHUHU
慕工程0101907
相关分类