Auszahlen und Girokonto hinzugefügt.

main
Oliver Hummel 2024-01-16 14:19:31 +01:00
parent 9d4a7aca59
commit e10a3ca82a
2 changed files with 25 additions and 5 deletions

View File

@ -36,11 +36,13 @@ public class Bankkonto implements Serializable {
return kontostand;
}
// TODO
// Geld soll nur ausgezahlt werden, wenn das Konto
// auch gedeckt ist
public double geldAuszahlen(double betrag) {
return -1;
public boolean geldAuszahlen(double betrag) {
if (kontostand - betrag >= 0) {
kontostand -= betrag;
return true;
}
return false;
}
// TODO

View File

@ -0,0 +1,18 @@
package bank;
public class Girokonto extends Bankkonto {
public Girokonto(String name) {
super(name);
}
public boolean überweisen(Bankkonto zielkonto, double betrag) {
if (this.geldAuszahlen(betrag)) {
zielkonto.geldEinzahlen(betrag);
return true;
}
return false;
}
}