首页 > 其他 > 详细

A Tour of Go Methods

时间:2014-10-28 19:29:40      阅读:227      评论:0      收藏:0      [点我收藏+]

Go does not have classes. However, you can define methods on struct types.

The method receiver appears in its own argument list between the func keyword and the method name.

package main 

import (
    "fmt"
    "math"
)

type Vertex struct {
    X, Y float64
}
func (v *Vertex) Abs() float64 {//相当于给类添加方法
    return math.Sqrt(v.X * v.X + v.Y * v.Y)
}
func main() {
    v := &Vertex{3, 4}
    fmt.Println(v.Abs())
}

 

A Tour of Go Methods

原文:http://www.cnblogs.com/ghgyj/p/4057593.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!