Java教程

JAVA 常用方法实例 instanceof 和 类型转换

本文主要是介绍JAVA 常用方法实例 instanceof 和 类型转换,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

instanceof

判断对象的类型是否有继承关系

主程序App.java

public class App {
  public static void main(String[] args) {
    //Object > String
    //Object > Person > Teacher
    //Object > Person > Student
    Object object = new Student();
    System.out.println(object instanceof Object);   //true
    System.out.println(object instanceof Person);   //true
    System.out.println(object instanceof Student);  //true
    System.out.println(object instanceof Teacher);  //false
    System.out.println(object instanceof String);   //false

    System.out.println("-----------------------------");

    Person person = new Student();
    System.out.println(person instanceof Object);   //true
    System.out.println(person instanceof Person);   //true
    System.out.println(person instanceof Student);  //true
    System.out.println(person instanceof Teacher);  //false
    //System.out.println(person instanceof String);   //编译报错

    System.out.println("-----------------------------");

    Student student = new Student();
    System.out.println(student instanceof Object);   //true
    System.out.println(student instanceof Person);   //true
    System.out.println(student instanceof Student);  //true
    //System.out.println(student instanceof Teacher);  //编译报错
    //System.out.println(person instanceof String);   //编译报错
  }
}

Object类是所有类的父类
Person.java类默认继承Object

public class Person {
}

子类Teacher.java继承Person

public class Teacher extends Person{
}

子类Student.java继承Person

public class Student extends Person{
}

执行结果

true
true
true
false
false
-------
true
true
true
false
-------
true
true
true
这篇关于JAVA 常用方法实例 instanceof 和 类型转换的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!