Ver código fonte

(feat) implement optional section on polymorphism

main
Rob Hallam 1 ano atrás
pai
commit
4466f6271a
1 arquivos alterados com 10 adições e 0 exclusões
  1. +10
    -0
      week23.java

+ 10
- 0
week23.java Ver arquivo

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

Carregando…
Cancelar
Salvar