Golang中的“instanceof”等价物

前端之家收集整理的这篇文章主要介绍了Golang中的“instanceof”等价物前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个结构:
type Event interface {
    Accept(EventVisitor)
}

type Like struct {
}

func (l *Like) Accept(visitor EventVisitor) {
    visitor.visitLike(l)
}

如何测试该事件是否为Like实例?

func TestEventCreation(t *testing.T) {
    event,err := New(0)
    if err != nil {
        t.Error(err)
    }
    if reflect.TypeOf(event) != Like {
        t.Error("Assertion error")
    }
}

我明白了:

Type Like is not an expression event Event

您可以将它投射并查看它是否失败:
event,err := New(0)
if err != nil {
    t.Error(err)
}
_,ok := event.(Like)
if !ok {
    t.Error("Assertion error")
}
原文链接:https://www.f2er.com/go/186958.html

猜你在找的Go相关文章