标签:项目 动态编译 ros ihe 条件 否则 mil 异常 end
1 package com.oop.demo06; 2 3 public class Person { 4 5 public void run() { 6 System.out.println("run"); 7 } 8 9 }
package com.oop.demo06; public class Student extends Person { @Override public void run() { System.out.println("son"); } public void eat() { System.out.println("eat"); } }
package com.oop; import com.oop.demo06.Person; import com.oop.demo06.Student; public class Application { public static void main(String[] args) { //一个对象的实际类型是确定的 //可以指向的引用类型就不确定了:父类的引用指向子类 //Student 能调用的方法都是自己的或者继承父类的! Student s1 = new Student(); //Person 父类型,可以指向子类,但是不能调用子类独有的方法 Person s2 = new Student(); Object s3 = new Student(); //对象能执行哪些方法,主要看对象左边的类型,和右边关系不大! s2.run();//如果子类重写了父类的方法,那么以子类重写过后的为准 s1.run(); s1.eat(); ((Student) s2).eat();//类型转换 } } 结果: son son eat eat
标签:项目 动态编译 ros ihe 条件 否则 mil 异常 end
原文地址:https://www.cnblogs.com/duanfu/p/12222579.html