输入noRows struct {} var _ Result = noRows {}

type noRows struct{}
var _ Result = noRows{}

我的问题是为什么要初始化变量却立即将其丢弃?


largeQ
浏览 197回答 2
2回答

大话西游666

空白标识符有许多可能的用途,但是其主要目的是允许丢弃具有多个返回值的函数的返回值:// We only care about the rune and possible error, not its lengthr, _, err := buf.ReadRune()还有其他一些有趣的用法,但有时会令人讨厌。将导入或局部变量标记为“已使用”,以便编译器不会发出错误:import "fmt"var _ = fmt.Println // now fmt is used and the compiler won't complainfunc main() {&nbsp; &nbsp; var x int&nbsp; &nbsp; _ = x // now x is used and the compiler won't complain}确保类型在编译时实现接口:var _ InterfaceType = Type{} // or new(Type), or whatever确保常量在编译时位于一定范围内:// Ensure constVal <= 10const _ uint = 10 - constVal// Ensure constVal >= 1 (constVal > UINT_MAX + 1 is also an error)const _ uint = -1 + constVal确保未使用功能参数:// This could be useful if somebody wants a value of type// func(int, int) int// but you don't want the second parameter.func identity(x, _ int) int { return x }

凤凰求蛊

有些人将诸如线路之类的内容用作界面检查。此行确保类型noRows实现Result接口。如果没有,您将得到一个编译器错误。我相信这样的检查是不必要的。通常,涉及该类型的任何类型的测试都会告诉您什么时候类型不满足重要的界面。在极少数情况下,可以将转换测试添加到单元测试中。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go