在 Go 中将 Null 接口转换为指针
在 Go 中,将 nil 接口转换为特定类型的指针可能会导致错误。在提供的示例代码中:
type Nexter interface { Next() Nexter } type Node struct { next Nexter } func (n *Node) Next() Nexter {...} func main() { var p Nexter var n *Node fmt.Println(n == nil) // prints true n = p.(*Node) // fails }
这会失败,因为静态接口(Nexter)可以保存不同动态类型的值,包括 nil。类型断言 (p.(*Node)) 不能对 nil 接口值执行。
但是,可以直接将 nil 值分配给特定类型的指针:
n = (*Node)(nil)
这会将动态类型 *Node 的 nil 值分配给 n。
要处理 nil 接口值,您可以检查它们显式地:
if p != nil { n = p.(*Node) // only succeeds if p contains a value of type *Node }
或者,使用“comma-ok”形式:
if n, ok := p.(*Node); ok { // n is not nil and holds a value of type *Node }
使用“comma-ok”形式确保断言永远不会失败并返回一个布尔值,指示断言是否成立而不是引起恐慌。这使您可以安全地处理 nil 和非 nil 接口值。
以上是如何在 Go 中安全地将 Nil 接口转换为指针?的详细内容。更多信息请关注PHP中文网其他相关文章!