An Introduction to Programming in Goを読み、インターフェイスを把握しようとしています。それらが何であるか、なぜそれらが必要なのかについてはよくわかっているように感じますが、それらを使用するのに問題があります. セクションの終わりに彼らは持っています
インターフェイスはフィールドとしても使用できます。
type MultiShape struct { shapes []Shape }
Area メソッドを指定することで、MultiShape 自体を Shape に変換することもできます。
func (m *MultiShape) area() float64 { var area float64 for _, s := range m.shapes { area += s.area() } return area }
現在、MultiShape には、円、長方形、またはその他の MultiShape を含めることができます。
これの使い方がわかりません。これについての私の理解は、その中にandを含めることがMultiShape
できるということですCircle
Rectangle
slice
これは私が取り組んでいるサンプルコードです
package main
import ("fmt"; "math")
type Shape interface {
area() float64
}
type MultiShape struct {
shapes []Shape
}
func (m *MultiShape) area() float64 {
var area float64
for _, s := range m.shapes {
area += s.area()
}
return area
}
// ===============================================
// Rectangles
type Rectangle struct {
x1, y1, x2, y2 float64
}
func distance(x1, y1, x2, y2 float64) float64 {
a := x2 - x1
b := y2 - y1
return math.Sqrt(a*a + b*b)
}
func (r *Rectangle) area() float64 {
l := distance(r.x1, r.y1, r.x1, r.y2)
w := distance(r.x1, r.y1, r.x2, r.y1)
return l*w
}
// ===============================================
// Circles
type Circle struct {
x, y, r float64
}
func (c * Circle) area() float64 {
return math.Pi * c.r*c.r
}
// ===============================================
func totalArea(shapes ...Shape) float64 {
var area float64
for _, s := range shapes {
area += s.area()
}
return area
}
func main() {
c := Circle{0,0,5}
fmt.Println(c.area())
r := Rectangle{0, 0, 10, 10}
fmt.Println(r.area())
fmt.Println(totalArea(&r, &c))
//~ This doesn't work but this is my understanding of it
//~ m := []MultiShape{c, r}
//~ fmt.Println(totalArea(&m))
}
誰かがこれで私を助けることができますか? 私はPythonのバックグラウンドを持っているので、2つの間に何らかのリンクがあれば役立ちます。
ありがとう