package lc import "fmt" type Loudspeaker interface { Speak() } type IpCast struct { } func (ip IpCast) Speak() { fmt.Println("语音") }