如何在不包含子类的情况下键入check?

时间:2015-03-04 19:52:18

标签: ios swift typechecking downcast

我想知道一个对象是否是一个不包含其子类型的类型。例如:

class Dog {

}

class Labrador: Dog {

}

//I want this to be false
if pet is Dog {

}

0 个答案:

没有答案