java – 是什么意思isInstance是instanceof的“动态等价物”?

前端之家收集整理的这篇文章主要介绍了java – 是什么意思isInstance是instanceof的“动态等价物”?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么意思’动态等价’?

我只是想知道具有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().

原文链接:https://www.f2er.com/java/127746.html

猜你在找的Java相关文章