什么意思’动态等价’?
我只是想知道具有this.getClass().isInstance(aClass)而不是这个aClass实例的目的是什么?有区别吗?
Determines if the specified Object is assignment-compatible with the
object represented by this Class. This method is the dynamic
equivalent of the Java language instanceof operator
解决方法
是.不仅顺序不一样,而且Clazz的对象实例必须有一个在编译时已知的类. clazz.isInstance(object)可以使用运行时已知的类.
还有一个微妙的区别是isInstance会自动装箱,但是instanceof不会.
例如
10 instanceof Integer // does not compile Integer.class.isInstance(10) // returns true Integer i = 10; if (i instanceof String) // does NOT compile if (String.class.isInstance(i)) // is false
为了看到差异,我建议你尝试使用它们.
注意:如果你执行object.getClass().getClass()或myClass.getClass(),你将获得一个Class注意不要在不需要时调用getClass().