• JAVA的instanceOf什么时候用


    我个人理解的一个应用场合就是,当你拿到一个对象的引用时(例如参数),你可能需要判断这个引用真正指向的类。所以你需要从该类继承树的最底层开始,使用instanceof操作符判断,第一个结果为true的类即为引用真正指向的类。
    例如下面的例子:
    class Person{} 
    class Student extends Person{}
     class Postgraduate extends Student{} 
    class Animal{}  
    public class InstanceofTester 
    {  
    public static void main(String[] args)
     {
       instanceofTest(new Student());  
    }
      public static void instanceofTest(Person p)
    {
       // 判断p的真正类型 
      if (p instanceof Postgraduate)
    { 
       System.out.println("p是类Postgraduate的实例");   
    }
     else if(p instanceof Student)
    {
        System.out.println("p是类Student的实例");   
    }
     else if(p instanceof Person)
    {
        System.out.println("p是类Person的实例");  
     }
     else if(p instanceof Object) 
    {
        System.out.println("p是类Object的实例");   
    }
       /*if(p instanceof Animal)
    {
    //此错编译错误,所以做注释   
     System.out.println("p是类Animal的实例");   
    }*/  
    } 
    }

    这个程序的输出结果是:p是类Student的实例
    Person类所在的继承树是:Object<--Person<--Student<--Postgraduate。
    这个例子中还加入一个Animal类,它不是在Person类的继承树中,所以不能作为instanceof的右操作数。
  • 相关阅读:
    http
    jquery
    wsgi
    urls控制器
    模板template
    ORM
    C++中获取汉字拼音首字缩写/全拼及生僻字的处理
    C语言函数strstr
    CString 成员函数用法
    判断字符串中是否存在中文
  • 原文地址:https://www.cnblogs.com/fangchongyan/p/5044188.html
Copyright © 2020-2023  润新知