dongshi3818 2019-01-30 15:21
浏览 87
已采纳

为什么`fmt.Println(“%T ”,e)`中的`e`是错误变量会打印出<nil>而不是其类型?

I was recently playing with the Go language and I bumped into something a bit weird to say the least, let's consider a very simple function:

func main() {
    n, e := fmt.Println(`He said: "Hello"`)
    fmt.Printf("%T
", n)
}

Which outputs what I was expecting:

He said: "Hello"
int

Now if I want to display the type of e:

func main() {
    n, e := fmt.Println(`He said: "Hello"`)
    fmt.Printf("%T
", e)
}

and this time prints out:

He said: "Hello"
<nil>

I get the part that there is no error so e is an empty pointer: nil but I would have not expected to be a ~~type~~ on its own.

Why am I not getting the actual type?

If so, is there a workaround? (not saying my use case is a realistic one but curious if there is any possibility)

  • 写回答

2条回答 默认 最新

  • doufan6886 2019-01-30 15:25
    关注

    The Go Programming Language Specification

    Errors

    The predeclared type error is defined as

    type error interface {
      Error() string
    }
    

    It is the conventional interface for representing an error condition, with the nil value representing no error.

    Interface types

    An interface type specifies a method set called its interface. A variable of interface type can store a value of any type with a method set that is any superset of the interface. Such a type is said to implement the interface. The value of an uninitialized variable of interface type is nil.

    The zero value

    When storage is allocated for a variable, either through a declaration or a call of new, or when a new value is created, either through a composite literal or a call of make, and no explicit initialization is provided, the variable or value is given a default value. Each element of such a variable or value is set to the zero value for its type: nil for interfaces.


    A zero-value error type, an interface, has no type.Its value is nil.

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

报告相同问题?

悬赏问题

  • ¥15 求给定范围的全体素数p的(p-2)的连乘积
  • ¥15 VFP如何使用阿里TTS实现文字转语音?
  • ¥100 需要跳转番茄畅听app的adb命令
  • ¥50 寻找一位有逆向游戏盾sdk 应用程序经验的技术
  • ¥15 请问有用MZmine处理 “Waters SYNAPT G2-Si QTOF质谱仪在MSE模式下采集的非靶向数据” 的分析教程吗
  • ¥50 opencv4nodejs 如何安装
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页