在下面的代码中,类型ErrNegativeSqrt实现了Stringer和error接口。由于在Sqrt方法中返回类型是fmt.Stringer,我会除了执行结果是:
0 无
0 Impl 纵梁类型
但实际结果如下,为什么呢?
0 无
0 Impl 错误类型
package main
import (
"fmt"
)
type ErrNegativeSqrt float64
func Sqrt(x ErrNegativeSqrt) (float64, fmt.Stringer) {
if x < 0 {
return 0, ErrNegativeSqrt(x)
}
return 0, nil
}
func (e ErrNegativeSqrt) String() string {
return "Impl Stringer type"
}
func (e ErrNegativeSqrt) Error() string {
return "Impl error type"
}
func main() {
fmt.Println(Sqrt(2))
fmt.Println(Sqrt(-2))
}
隔江千里
慕田峪4524236
相关分类