首页 > 其他 > 详细

instanceof 和类型转换

时间:2021-07-15 18:44:16      阅读:32      评论:0      收藏:0      [点我收藏+]
  1. 父类引用指向子类对象

  2. 把子类转换成父类,向上转型

  3. 吧父类转换成子类,向下转型:强制转换

  4. 方便方法的调用

封装 继承 多态

import Dome.Person;
import Dome.Student;
import Dome.Teacher;
?
public class Application {
  public static void main(String[] args) {
      Person obj = new Student();
      ((Student)obj).go();
  }
}
package Dome;
?
public class Teacher extends Person{
}
?
?
?
?
?
?
?
?
?
?
?
?
/*
public static void main(String[] args) {
?
          Object object = new Object();
          System.out.println(object instanceof Student);
          System.out.println(object instanceof Person);
          System.out.println(object instanceof Object);
          System.out.println(object instanceof Teacher);
          System.out.println(object instanceof String);
?
*/

instanceof 和类型转换

原文:https://www.cnblogs.com/java5745/p/15016195.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!