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