Does instanceof return true if instance of a parent?

后端 未结 4 1071
孤城傲影
孤城傲影 2020-12-16 09:14

I have a class Child that extends Parent.

Parent child = new Child();

if (child instanceof Parent){
    // Do something
}
<         


        
4条回答
提交回复
热议问题