美文网首页
Golang方法:方法就是一个包含了接受者的函数

Golang方法:方法就是一个包含了接受者的函数

作者: 钾肥尔德 | 来源:发表于2019-03-01 12:56 被阅读0次
    
    package main
    
    import (
        "fmt"
        "math"
    )
    
    func main() {
        getSquareRoot := func(x float64) float64 {  //等价于func getSquareRoot1(x float64) float64{}
            return math.Sqrt(x)
        }
    
        fmt.Println(getSquareRoot(9))
        fmt.Println(getSquareRoot1(16))
    }
    
    func getSquareRoot1(x float64) float64 {
        return math.Sqrt(x)
    }
    

    相关文章

      网友评论

          本文标题:Golang方法:方法就是一个包含了接受者的函数

          本文链接:https://www.haomeiwen.com/subject/nehduqtx.html