type noRows struct{}
var _ Result = noRows{}
我的问题是为什么要初始化变量但是立即丢弃它?
答案 0 :(得分:7)
空白标识符有许多可能的用途,但其主要目的是允许从具有多个返回的函数中丢弃返回值:
// We only care about the rune and possible error, not its length
r, _, err := buf.ReadRune()
还有其他一些乐趣,但有时是hackish,用途。
将导入或局部变量标记为“已使用”,以便编译器不会发出错误:
import "fmt"
var _ = fmt.Println // now fmt is used and the compiler won't complain
func main() {
var x int
_ = x // now x is used and the compiler won't complain
}
确保类型在编译时实现接口:
var _ InterfaceType = Type{} // or new(Type), or whatever
在编译时确保常量位于某个范围内:
// Ensure constVal <= 10
const _ 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 }
答案 1 :(得分:3)
有些人使用像界面检查这样的行。此行确保类型noRows
实现Result
接口。如果不是,您将收到编译器错误。
我相信这样的检查是不必要的。通常,涉及该类型的任何类型的测试都会告诉您何时类型不满足且重要的界面。在极少数情况下,您可以在单元测试中添加转换测试。