A Tour of Go Function values

Functions are values too.

在函数式语言中中函数都是变量,比如在javascript中

package main 

import (
"fmt"
"math"
) func main() {
hypot := func(x,y float64) float64 {
return math.Sqrt(x*x + y*y)
}
fmt.Println(hypot(, ))
}
上一篇:Understanding closures in depth


下一篇:iOS9 判断微信qq是否安装