码迷,mamicode.com
首页 > 其他好文 > 详细

A Tour of Go Methods

时间:2014-10-28 19:32:58      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   sp   div   on   log   bs   

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

标签:style   blog   color   ar   sp   div   on   log   bs   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!