forked from hummel/BankSystemWS23
Compare commits
1 Commits
persistenc
...
main
Author | SHA1 | Date |
---|---|---|
Oliver Hummel | e10a3ca82a |
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue