2 回答
TA贡献1817条经验 获得超14个赞
空白标识符有许多可能的用途,但是其主要目的是允许丢弃具有多个返回值的函数的返回值:
// We only care about the rune and possible error, not its length
r, _, err := buf.ReadRune()
还有其他一些有趣的用法,但有时会令人讨厌。
将导入或局部变量标记为“已使用”,以便编译器不会发出错误:
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 }
TA贡献1825条经验 获得超4个赞
有些人将诸如线路之类的内容用作界面检查。此行确保类型noRows
实现Result
接口。如果没有,您将得到一个编译器错误。
我相信这样的检查是不必要的。通常,涉及该类型的任何类型的测试都会告诉您什么时候类型不满足重要的界面。在极少数情况下,可以将转换测试添加到单元测试中。
- 2 回答
- 0 关注
- 196 浏览
添加回答
举报