Selaa lähdekoodia

(feat) implement optional section on polymorphism

main
Rob Hallam 1 vuosi sitten
vanhempi
commit
4466f6271a
1 muutettua tiedostoa jossa 10 lisäystä ja 0 poistoa
  1. +10
    -0
      week23.java

+ 10
- 0
week23.java Näytä tiedosto

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

Ladataan…
Peruuta
Tallenna