instanceof和getClass的区别

僤鯓⒐⒋嵵緔 提交于 2019-11-28 00:08:35

instanceof对比getClass:

  instanceof 比较的是继承关系或者实现关系的类类型,子类对象或者实现类对象放在前面;而getClass得到的是确切的类型,并不考虑继承,它判断的是引用指向的对象的类型,与声明该变量的类型无关

  继承/接口关系:父类和子类的关系,包括从子类到父类的抽象过程,从父类到子类的扩展过程

//父类接口
public interface Fruit {
    
}
//子类实现
public class Apple implements Fruit{

}
复制代码
public class Test {
    public static void main(String[] args) {
        Class clazz = Apple.class;        Fruit o = new Apple();
        if(o instanceof Apple){
            System.out.println("o instanceof Apple");  //会输出
        }
        if(o instanceof Fruit){
            System.out.println("o instanceof Fruit");//会输出
        }
        if(o.getClass()==Apple.class){
            System.out.println("o.getClass()==Apple.class");//会输出
        }
        if(o.getClass()==Fruit.class){
            System.out.println("o.getClass()==Fruit.class");//不会输出
        }
        
    }
}
复制代码

 

instanceof对比getClass:

  instanceof 比较的是继承关系或者实现关系的类类型,子类对象或者实现类对象放在前面;而getClass得到的是确切的类型,并不考虑继承,它判断的是引用指向的对象的类型,与声明该变量的类型无关

  继承/接口关系:父类和子类的关系,包括从子类到父类的抽象过程,从父类到子类的扩展过程

//父类接口
public interface Fruit {
    
}
//子类实现
public class Apple implements Fruit{

}
复制代码
public class Test {
    public static void main(String[] args) {
        Class clazz = Apple.class;        Fruit o = new Apple();
        if(o instanceof Apple){
            System.out.println("o instanceof Apple");  //会输出
        }
        if(o instanceof Fruit){
            System.out.println("o instanceof Fruit");//会输出
        }
        if(o.getClass()==Apple.class){
            System.out.println("o.getClass()==Apple.class");//会输出
        }
        if(o.getClass()==Fruit.class){
            System.out.println("o.getClass()==Fruit.class");//不会输出
        }
        
    }
}
复制代码

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!