go func 使用
golang func 使用样例
package main
import (
"fmt"
"testing"
)
func Add(a int, b int) int {
return a + b
}
func TestAdd(t *testing.T) {
fmt.Println(Add(1, 8))
}
// 声明一个函数类型
type cb func(int) int
func callback(x int, f cb) {
f(x)
}
func TestCallback(t *testing.T) {
callback(5, func(x int) int {
fmt.Printf("call back value is %d \n", x)
return x
})
}
测试
执行测试代码 go test -v func_test.go
可以查看执行结果
go test 使用请看:go test 使用
golang 使用样例汇总:go test
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦