在Java中,我们可以检查not instanceof,例如
instanceof
if(!(activity instanceof Activity))
我们如何在Kotlin中做到这一点?
您必须在kotlin中使用!is。检查以下:
!is
if(activity !is Activity)