我已经阅读了“Effective Go”和其他类似这样的问答:golang interface compliance compile type check,但我仍然无法正确理解如何使用这种技术。
请看例子:
type Somether interface {
Method() bool
}
type MyType string
func (mt MyType) Method2() bool {
return true
}
func main() {
val := MyType("hello")
//here I want to get bool if my value implements Somether
_, ok := val.(Somether)
//but val must be interface, hm..what if I want explicit type?
//yes, here is another method:
var _ Iface = (*MyType)(nil)
//but it throws compile error
//it would be great if someone explain the notation above, looks weird
}
如果它实现了一个接口,是否有任何简单的方法(例如不使用反射)检查值?
临摹微笑
繁星coding
白板的微信
相关分类