1
0
Fork 0

Compare commits

..

1 Commits

Author SHA1 Message Date
Oliver Hummel e10a3ca82a Auszahlen und Girokonto hinzugefügt. 2024-01-16 14:19:31 +01:00
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;
}
}