在Java中的instanceof运算符
该运算符仅用于对象引用变量。该运算符检查对象是否属于特定类型(类类型或接口类型)。 instanceof 运算符写为 -
( Object reference variable ) instanceof (class/interface type)
如果运算符左侧变量引用的对象通过了右侧类/接口类型的 IS-A 检查,则结果将为 true。以下是一个示例 -
示例
现场演示
public class Test { public static void main(String args[]) { String name = "James"; // following will return true since name is type of String boolean result = name instanceof String; System.out.println( result ); } }
输出
这将产生以下结果 -
true
如果正在比较的对象是与右侧类型兼容的赋值,则该运算符仍将返回 true。以下是另一个示例 -
示例
现场演示 p>
class Vehicle {} public class Car extends Vehicle { public static void main(String args[]) { Vehicle a = new Car(); boolean result = a instanceof Car; System.out.println( result ); } }
输出
这将产生以下结果 -
true
以上就是在Java中的instanceof运算符的详细内容,更多请关注其它相关文章!