go anonymous function

简介:

package main

import "fmt"

// function add
func add(a, b int) int {
return a + b
}

// 1
func testFunc1() {

// function "add" to var "f1"
// then "f1" is a function
f1 := add

// type of f1 = func(int int) int
fmt.Printf("type of f1 = %T\n", f1)

// call function "f1"
// params are 2 and 5
sum := f1(2, 5)

// sum = 7
fmt.Printf("sum = %d\n", sum)

}

// 2
func testFunc2() {

// anonymous function to var "f1", then "f1" is a function
f1 := func(a, b int) int {
    return a + b
}

// type of f1 = function(int, int) int
fmt.Printf("type of f1 = %T\n", f1)

// call function f1, params are 2 and 5
sum := f1(2, 5)

// sum = 7
fmt.Printf("sum = %d\n", sum)

}

// 3
func testFunc3() {
var i = 0

// the statement after "defer" will be pushed into stack first
// so the value of var "i" will be "0"
// defer i = 0
defer fmt.Printf("defer i = %d\n", i)

i = 100

// i = 100
fmt.Printf("i = %d\n", i)

return

}

// 4
func testFunc4() {
var i = 0

// the anonymous function after "defer" will be pushed into stack first
// but at this time, the statement in function will not be pushed into stack
// so at this time the value of var "i" is not specific
// the value of var
// at the end the value of var "i" is 100
defer func() {
    fmt.Printf("defer i = %d\n", i)
}()

i = 100

// i = 100
fmt.Printf("i = %d\n", i)

return

}

func main() {
//testFunc1()
//testFunc2()
//testFunc3()
testFunc4()
}


本文转自yeleven 51CTO博客,原文链接:http://blog.51cto.com/11317783/2066501


相关文章
|
缓存 监控 架构师
Go 函数式编程:Higher-order function
Go 函数式编程:Higher-order function
142 0
|
Go
learn go function callback
package main // 参考文档: // https://github.com/Unknwon/the-way-to-go_ZH_CN/blob/master/eBook/06.
716 0
|
Go 定位技术
learn go anonymous function
package main // 参考文档: // https://github.com/Unknwon/the-way-to-go_ZH_CN/blob/master/eBook/06.
629 0
|
4天前
|
存储 监控 算法
员工上网行为监控中的Go语言算法:布隆过滤器的应用
在信息化高速发展的时代,企业上网行为监管至关重要。布隆过滤器作为一种高效、节省空间的概率性数据结构,适用于大规模URL查询与匹配,是实现精准上网行为管理的理想选择。本文探讨了布隆过滤器的原理及其优缺点,并展示了如何使用Go语言实现该算法,以提升企业网络管理效率和安全性。尽管存在误报等局限性,但合理配置下,布隆过滤器为企业提供了经济有效的解决方案。
33 8
员工上网行为监控中的Go语言算法:布隆过滤器的应用
|
24天前
|
存储 Go 索引
go语言中数组和切片
go语言中数组和切片
37 7
|
24天前
|
Go 开发工具
百炼-千问模型通过openai接口构建assistant 等 go语言
由于阿里百炼平台通义千问大模型没有完善的go语言兼容openapi示例,并且官方答复assistant是不兼容openapi sdk的。 实际使用中发现是能够支持的,所以自己写了一个demo test示例,给大家做一个参考。
|
24天前
|
程序员 Go
go语言中结构体(Struct)
go语言中结构体(Struct)
99 71
|
23天前
|
存储 Go 索引
go语言中的数组(Array)
go语言中的数组(Array)
103 67
|
26天前
|
Go 索引
go语言for遍历数组或切片
go语言for遍历数组或切片
94 62
|
24天前
|
存储 Go
go语言中映射
go语言中映射
36 11

热门文章

最新文章