Golang语言匿名变量
Go语言匿名变量如何定义呢,在使用多重赋值时,如果想要忽略某个值,可以使用匿名变量(anonymous variable)。Go语言 匿名变量用一个下划线_表示,例如:
func getInfo() (int, string) {
return 10, "张三"
}
func main() {
_, username := getInfo()
fmt.Println(username)
}
匿名变量不占用命名空间,不会分配内存,所以匿名变量之间不存在重复声明。
更多关于Go语言匿名变量如何定义的视频教程访问:https://www.itying.com/category-90-b0.html