最新要闻

广告

手机

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

家电

instanceof的使用

来源:博客园


(资料图)

  • instanceof 在多态中是判断运行类型是否从属于 of后面的类的判断方法
Person p = new Student();  // 这里假设 Person 是父类,Student 是子类if (p instanceof Person) { // p 的运行类型是Student,而Student是Person的子类,所以这里会输出    System.out.println("p 是 Person 类型的实例");}if (p instanceof Student) {// p 的运行类型是Student,所以这里会输出    System.out.println("p 是 Student 类型的实例");}
  • 再举一个例子,假设有一个接口 Shape 和两个实现类 Circle 和 Rectangle,我们可以使用 instanceof 操作符来判断一个对象是否实现了 Shape 接口:
Shape shape = new Circle();  // 创建一个 Circle 类型的对象,并将其赋值给 Shape 类型的变量if (shape instanceof Shape) {    System.out.println("shape 实现了 Shape 接口");}if (shape instanceof Rectangle) {    System.out.println("shape 是 Rectangle 类型的实例");}
  • 上面的代码中,我们创建了一个 Circle 类型的对象,并将其赋值给 Shape 类型的变量 shape。使用 instanceof 操作符来判断 shape 是否实现了 Shape 接口和 Rectangle 类型的实例。由于 Circle 类型的对象实现了 Shape 接口,因此第一个 if 语句输出;而由于 shape 不是 Rectangle 类型的实例,第二个 if 语句不会执行。

关键词: