package
Version:
v0.0.0-...-54da96c
Opens a new window with list of versions in this module.
Published: Apr 17, 2025
License: GPL-3.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Circle struct {
Color Color
}
Circle 是擴充的形狀抽象,持有顏色的引用
type Color interface {
ApplyColor() string
}
Color 定義顏色的實現接口
type Rectangle struct {
Color Color
}
Rectangle 是擴充的形狀抽象,持有顏色的引用
type Shape interface {
Draw() string
}
Shape 定義形狀的抽象
Source Files
¶
Click to show internal directories.
Click to hide internal directories.