1
0
Fork 0

Auszahlen und Girokonto hinzugefügt.

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; return kontostand;
} }
// TODO public boolean geldAuszahlen(double betrag) {
// Geld soll nur ausgezahlt werden, wenn das Konto if (kontostand - betrag >= 0) {
// auch gedeckt ist kontostand -= betrag;
public double geldAuszahlen(double betrag) { return true;
return -1; }
return false;
} }
// TODO // 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;
}
}