Interfaces are named collections of method signatures.
package main
import (
"fmt"
"math"
)
// interface 선언부분
type geometry interface {
area() float64
perim() float64
}
// rect 와 circle 구조체 선언
type rect struct {
width, height float64
}
type circle struct {
radius float64
}
// rect 와 관련이 있는 method
func (r rect) area() float64 {
return r.width * r.height
}
func (r rect) perim() float64 {
return 2*r.width + 2*r.height
}
// circle 과 관련이 있는 method
func (c circle) area() float64 {
return math.Pi * c.radius * c.radius
}
func (c circle) perim() float64 {
return 2 * math.Pi * c.radius
}
// interface 를 활용할 함수
func measure(g geometry) {
fmt.Println(g)
fmt.Println(g.area())
fmt.Println(g.perim())
}
func main() {
r := rect{width: 3, height: 4}
c := circle{radius: 5}
measure(r)
measure(c)
}
$ go run interfaces.go
{3 4}
12
14
{5}
78.53981633974483
31.41592653589793