소스 검색

(feat) implement optional section on polymorphism

main
Rob Hallam 1 년 전
부모
커밋
4466f6271a
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +10
    -0
      week23.java

+ 10
- 0
week23.java 파일 보기

@@ -286,3 +286,13 @@ class DemoSavingsAccount {

}
}

class PolymorphismTest {
public static void main(String[] args) {
Person telemachus = new Person();
telemachus.setName("Τηλέμαχος");
BankAccount b = new SavingsAccount(telemachus, 10);

System.out.println(String.format("%s", b));
}
}

불러오는 중...
취소
저장