instance 형 확인 (instanceof)
instanceof instance의 형이 맞는지 여부를 check 해주는 것 public void Test(ArrayList list) { //int i; for (Animal animal : list) // for (i = 0; i < list.size(); i++) { // Animal animal = list.get(i); if (animal instanceof Human) { Human human = (Human)animal; human.readBook(); } else if (animal instanceof Tiger) { Tiger tiger = (Tiger)animal; tiger.hunting(); } else { System.out.println("unsupported type"); }..
Tip and Error/JAVA
2021. 4. 12. 20:30
공지사항
최근에 올라온 글