duanhe1903 2019-08-01 15:57
浏览 228
已采纳

接口[golang]中的字段?

is there any solution to force struct have specific property(defined in interface)?
or define a property(attribute,field) in interface?.
as i see interface is always accept method not property?. (https://gobyexample.com/interfaces)

type geo interface {
    PrintType()
    typ string//not function , but field
}
type circle struct {
    typ string
}

func (c circle) PrintType() {
    fmt.Println(c.typ)
}

thanks

  • 写回答

1条回答 默认 最新

  • dsf22567 2019-08-01 16:03
    关注

    Interfaces are about methods only, not properties, because interfaces are about behavior. So there is no way to force a struct to have something. Rather the preferred method is to have an accessor to that member.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?