码迷,mamicode.com
首页 > 编程语言 > 详细

Java 基础 - instanceof关键字

时间:2019-05-05 01:06:39      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:ceo   java   []   test   ==   nbsp   rgs   col   sys   

 

instanceof 父类子类

结论:

  • 子类 instanceof 父类 == true
  • 父类 instanceof 子类 == false
public class Test {
 
 public static void main(String[] args) {
  //instanceof 父类子类 
  Father father1 = new Father();
  System.out.println(father1 instanceof Father ); //ture
  System.out.println(father1 instanceof Son ); //false
  
  Father father2 = new Son();
  System.out.println(father2 instanceof Father ); //ture
  System.out.println(father2 instanceof Son ); //ture
  
  Son son = new Son();
  System.out.println(son instanceof Father ); //ture
  System.out.println(son instanceof Son ); //ture
 }
}

 

Java 基础 - instanceof关键字

标签:ceo   java   []   test   ==   nbsp   rgs   col   sys   

原文地址:https://www.cnblogs.com/frankcui/p/10810663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!