Files
the-way-to-go_ZH_CN/eBook/examples/chapter_10/method3.go
2015-03-03 12:25:25 -05:00

25 lines
317 B
Go

package main
import (
"fmt"
"math"
)
type Point struct {
x, y float64
}
func (p *Point) Abs() float64 {
return math.Sqrt(p.x*p.x + p.y*p.y)
}
type NamedPoint struct {
Point
name string
}
func main() {
n := &NamedPoint{Point{3, 4}, "Pythagoras"}
fmt.Println(n.Abs()) // prints 5
}