doucitao2944 2015-01-13 18:14
浏览 189
已采纳

由fmt.Sprint(e)在Error方法内部产生的无限循环

According to fortyforty's reply to this question:

fmt.Sprint(e) will call e.Error() to convert the value e to a string. If the Error() method calls fmt.Sprint(e), then the program recurses until out of memory.

You can break the recursion by converting the e to a value without a String or Error method.

This is still confusing to me. Why does fmt.Sprint(e) call e.Error() instead of String()? I tried using the Stringer interface, this is my code:

package main

import (
  "fmt"
  "math"
)

type NegativeSqrt float64

func (e NegativeSqrt) Error() string {
  fmt.Printf(".")
  return fmt.Sprint(e)
}

func (e NegativeSqrt) String() string {
  return fmt.Sprintf("%f", e)
}

func Sqrt(x float64) (float64, error) {
  if x < 0 {
    return 0, NegativeSqrt(x)
  }
  return math.Sqrt(x), nil
}

func main() {
  fmt.Println(Sqrt(2))
  fmt.Println(Sqrt(-2))
}
  • 写回答

3条回答 默认 最新

  • doushan7997 2015-01-13 18:21
    关注

    It seems it's explained directly is source of fmt package:

    // Is it an error or Stringer?
    // The duplication in the bodies is necessary:
    // setting handled and deferring catchPanic
    // must happen before calling the method.
    

    And than Error() or String() is called.

    What it means is that first error.Error() is called to produce string, which is than once again processed and is printed as string.

    Whether error has method String is irrelevant here. The question is why NegativeSqrt is printed with one method and not the other. Type NegativeSqrt implements both fmt.Stringer and error interfaces so it's up to the implementation of fmt package which of interfaces should be used to get string from NegativeSqrt (since fmt.Sprint takes its parameters by interface{}).

    To illustrate this consider this example:

    package main
    
    import (
        "fmt"
    )
    
    type NegativeSqrt float64
    
    func (e NegativeSqrt) Error() string {
        return ""
    }
    
    func (e NegativeSqrt) String() string {
        return ""
    }
    
    func check(val interface{}) {
        switch val.(type) {
        case fmt.Stringer:
            fmt.Println("It's stringer")
        case error:
            fmt.Println("It's error")
        }
    }
    
    func check2(val interface{}) {
        switch val.(type) {
        case error:
            fmt.Println("It's error")
        case fmt.Stringer:
            fmt.Println("It's stringer")
        }
    }
    
    func main() {
        var v NegativeSqrt
        check(v)
        check2(v)
    }
    

    Executing this gives:

    % go run a.go
    It's stringer
    It's error
    

    This is because in Go type switch behaves just like normal switch, so order of cases matters.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵