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(3, 4))}
本文共 268 字,大约阅读时间需要 1 分钟。
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(3, 4))}
转载于:https://www.cnblogs.com/ghgyj/p/4055518.html