Sfoglia il codice sorgente

(feat) implement optional section on polymorphism

main
Rob Hallam 1 anno fa
parent
commit
4466f6271a
1 ha cambiato i file con 10 aggiunte e 0 eliminazioni
  1. +10
    -0
      week23.java

+ 10
- 0
week23.java Vedi File

@@ -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));
}
}

Caricamento…
Annulla
Salva