父类:A
子类:Person
A a1 = new Person();
if(a1 instanceof Person) {
System.out.println("true");
((Person) a1).getPersonName(); //调用子类独有的方法
}
时间: 2024-10-17 20:23:38
父类:A
子类:Person
A a1 = new Person();
if(a1 instanceof Person) {
System.out.println("true");
((Person) a1).getPersonName(); //调用子类独有的方法
}