errors定义了一个非常简单的struct:
type errorString struct { s string }
通过New方法可以创建新的error,例如:
New
err := errors.New("something is wrong")
← Go语言标准包解析 io →