父类:A
子类:Person
A a1 = new Person();
if(a1 instanceof Person) {
System.out.println("true");
((Person) a1).getPersonName(); //调用子类独有的方法
}
标签:get 对象 instance class ceo 调用 子类 person 引用
父类:A
子类:Person
A a1 = new Person();
if(a1 instanceof Person) {
System.out.println("true");
((Person) a1).getPersonName(); //调用子类独有的方法
}
标签:get 对象 instance class ceo 调用 子类 person 引用
原文地址:http://www.cnblogs.com/paul011/p/8072796.html