[Go] インターフェースを定義する

作成日: 2018年02月18日

書式

type インターフェース名 interface {
  ...
}

type Dog interface {
}
  • Dogという名前のインターフェースを定義しています。
Go