函数
func test(){} //无参数,无返回值函数
func test( a int){} //有参数,无返回值函数
func test() int { return 10} //有参数,有返回值函数
func ftest(){
func (s string){ //匿名函数,函数内部直接执行
fmt.Println(s)
}("hello world")
}
a := func(a int){ //函数 可以赋值变量
fmt.Println(a)
}
a(1000)
func test1() func(int) int{ //函数 作为返回值
return func(a int) int{
return 100
}
}
func test3(a func() int){ //函数作为参数 闭包
fmt.Println(a) //函数作为参数 打印0x1093620 函数为引用类型
fmt.Println(a())
}
e := 2222333
test3(func() int {
return e
})
匿名函数未使用为报错
延迟调用 defer
func test5() int{ //先返回 a,在去func 里面去计算 defer 在函数最后完成调用
a := 10
defer func(b int){
a += 10
}(a)
return a
}
有疑问加站长微信联系(非本文作者)