一分耕耘,一分收获!既然都打开这篇《如何处理带有 Nil Receiver 的方法?》,就坚持看下去,学下去吧!本文主要会给大家讲到等等知识点,如果大家对本文有好的建议或者看到有不足之处,非常欢迎大家积极提出!在后续文章我会继续更新golang相关的内容,希望对大家都有所帮助!
问题内容
type Product struct {
productName string
}
func (p *Product) GetProductName() string {
return p.productName
}
在 Go 中,通常应该如何处理方法上的接收者为零且方法逻辑本身不产生错误(例如 getter)的情况?
不要处理它,让它恐慌
检查是否为 nil,如果为 true,则返回零值
检查是否存在 nil 和恐慌以及有意义的消息
检查 nil 并增强方法以在 nil 时返回错误
其他
这确实取决于
我倾向于#1,但认为虽然#3 有点冗长,但它可以使调试更容易。 我的想法是调用代码应该测试 nil 并知道在这种情况下该怎么做。在简单的 getter 方法上返回错误太冗长了。
解决方案
不要处理它,让它恐慌
您可以在go标准库中查看示例。例如,在net/Http包中,有以下内容:
func (c *client) do(req *request) (*response, error) {
return c.do(req)
}
还有来自 encoding/JSON 的另一个示例:
// Buffered returns a reader of the data remaining in the Decoder's
// buffer. The reader is valid until the next call to Decode.
func (dec *Decoder) Buffered() io.Reader {
return bytes.NewReader(dec.buf[dec.scanp:])
}