标签:fun 就是 函数名 语言 环境 动态创建 返回值 type 其他
匿名函数: 没有函数名的函数package main
import (
"fmt"
)
func main() {
a := 10
str := "make"
//匿名函数,没有函数名字,函数定义,还没有调用
f1 := func() {
fmt.Println("a=",a)
fmt.Println("str=",str)
}
f1()
// 给一个函数类型起别名
type FuncType func() // 函数没有参数,没有返回值
// 声明变量
var f2 FuncType
f2 = f1
f2()
//定义匿名函数,同时调用
func() {
fmt.Printf("a=%d,str=%s\n", a,str)
}() // 后面的()代表调用匿名函数
// 带参数的匿名函数
f3 := func(i,j int) {
fmt.Printf("i =%d, j=%d\n",i,j)
}
f3(1,2)
//定义匿名函数,同时调用
func(i, j int) {
fmt.Printf("i=%d,j=%d\n", a,j)
}(10,20) // 后面的()代表调用匿名函数
//匿名函数,有参数有返回值
x,y := func(i, j int) (max, min int){
if i > j{
return i,j
}else {
return j,i
}
}(10,20)
fmt.Println(x,y)
}
package main
import "fmt"
func test01() func() int {
var x int // 没有初始化, 值为0
return func() int {
x++
return x * x
}
}
func test02() int {
var x int
x++
return x *x
}
func main() {
// 返回值为一个匿名函数,返回一个函数类型,通过f来调用返回的匿名函数
// 它不关心这些捕获了的变量和常量是否超出了作用域
// 所以只要闭包还在使用它,这些变量就还会存在
f := test01()
fmt.Println(f()) //1
fmt.Println(f()) //4
fmt.Println(f()) //9
fmt.Println(f()) //16
// 用完就释放了,每次调用还是1
fmt.Println(test02())
fmt.Println(test02())
fmt.Println(test02())
}
标签:fun 就是 函数名 语言 环境 动态创建 返回值 type 其他
原文地址:https://blog.51cto.com/13764714/2376116