clq
浏览(546) -
2018-03-13 21:11:09 发表
编辑
关键字: golang
go语言函数作为参数传递[zt]
go语言函数作为参数传递,目前给我的感觉几乎和C/C++一致。非常的灵活。
import "fmt"
import "time"
func goFunc1(f func()) {
go f()
}
func goFunc2(f func(interface{}), i interface{}) {
go f(i)
}
func goFunc(f interface{}, args... interface{}) {
if len(args) > 1 {
go f.(func(...interface{}))(args)
} else if len(args) == 1 {
go f.(func(interface{}))(args[0])
} else {
go f.(func())()
}
}
func f1() {
fmt.Println("f1 done")
}
func f2(i interface{}) {
fmt.Println("f2 done", i)
}
func f3(args... interface{}) {
fmt.Println("f3 done", args)
}
func main() {
goFunc1(f1)
goFunc2(f2, 100)
goFunc(f1)
goFunc(f2, "xxxx")
goFunc(f3, "hello", "world", 1, 3.14)
time.Sleep(5 * time.Second)
}
f1 done
f2 done 100
f1 done
f2 done xxxx
f3 done [[hello world 1 3.14]]
转自 http://blog.csdn.net/eclipser1987/article/details/11772539
NEWBT官方QQ群1: 276678893
可求档连环画,漫画;询问文本处理大师等软件使用技巧;求档softhub软件下载及使用技巧.
但不可"开车",严禁国家敏感话题,不可求档涉及版权的文档软件.
验证问题说明申请入群原因即可.