点击上方蓝色“Go语言中文网”关注我们,设个星标,每天学习 Go 语言
errorErrorfmt.Sprint(e)
下面贴一下具体的练习题
Practice
Sqrterror
Sqrt
创建一个新的类型
type ErrNegativeSqrt float64type ErrNegativeSqrt float64
并为其实现
func (e ErrNegativeSqrt) Error() stringfunc (e ErrNegativeSqrt) Error() string
errorErrNegativeSqrt(-2).Error()"cannot Sqrt negative number: -2"
Errorfmt.Sprint(e)efmt.Sprint(float64(e))
SqrtErrNegativeSqrt
Solution
这里只为叙述返回error的情况,所以请忽略Sqrt函数的功能实现。
package mainpackage main
import (import (
"fmt" "fmt"
))
type ErrNegativeSqrt float64type ErrNegativeSqrt float64
func (e ErrNegativeSqrt) Error() string {func (e ErrNegativeSqrt) Error() string {
// 这里直接使用e值会内存溢出 // 这里直接使用e值会内存溢出
return fmt.Sprintf("cannot Sqrt negative number: %v", float64(e)) return fmt.Sprintf("cannot Sqrt negative number: %v", float64(e))
}}
func Sqrt(x float64) (float64, error) {func Sqrt(x float64) (float64, error) {
if x < 0 { if x < 0 {
err := ErrNegativeSqrt(x) err := ErrNegativeSqrt(x)
return 0, err return 0, err
} }
return 0, nil return 0, nil
}}
func main() {func main() {
fmt.Println(Sqrt(2)) fmt.Println(Sqrt(2))
fmt.Println(Sqrt(-2)) fmt.Println(Sqrt(-2))
}}
e
fmt.Sprint(e)e.Error()eError()fmt.Sprint(e)e
Errorerrorfmt
switch verb { switch verb {
case 'v', 's', 'x', 'X', 'q': case 'v', 's', 'x', 'X', 'q':
// Is it an error or Stringer? // Is it an error or Stringer?
// The duplication in the bodies is necessary: // The duplication in the bodies is necessary:
// setting wasString and handled, and deferring catchPanic, // setting wasString and handled, and deferring catchPanic,
// must happen before calling the method. // must happen before calling the method.
switch v := p.field.(type) { switch v := p.field.(type) {
case error: case error:
wasString = false wasString = false
handled = true handled = true
defer p.catchPanic(p.field, verb) defer p.catchPanic(p.field, verb)
// 这里调用了Error方法 // 这里调用了Error方法
p.printField(v.Error(), verb, plus, false, depth) p.printField(v.Error(), verb, plus, false, depth)
return return
`
通过链接可以在Github上看到这块详细的源码 https://github.com/golang/go/blob/2ed57a8cd86cec36b8370fb16d450e5a29a9375f/src/pkg/fmt/print.go#L639
这个练习感觉还是给开发者提示了一个非常隐蔽的坑,感兴趣的可以通过阅读原文的链接访问到go tour上的这个练习题自己试验一下。
喜欢本文的朋友,欢迎关注“Go语言中文网”: