Compare commits

..

No commits in common. "main" and "persistence" have entirely different histories.

4 changed files with 6 additions and 54 deletions

View File

@ -31,19 +31,6 @@ public class Bank implements Serializable {
public String getName() { public String getName() {
return this.name; return this.name;
} }
// public ArrayList<Bankkonto> getKontenliste() {
public String[] getKontendaten() {
// kontendaten ist ein sog. DTO = Data Transfer Object
String[] kontendaten = new String[kontenliste.size()];
for (int i = 0; i < kontenliste.size(); i++) {
kontendaten[i] = kontenliste.get(i).toString();
}
return kontendaten;
}
public boolean geldEinzahlen(int kontonummer, double betrag) { public boolean geldEinzahlen(int kontonummer, double betrag) {
Bankkonto bk = kontoFinden(kontonummer); Bankkonto bk = kontoFinden(kontonummer);

View File

@ -7,7 +7,7 @@ public class BankUI {
private static Scanner kb = new Scanner(System.in); private static Scanner kb = new Scanner(System.in);
public static void main(String[] args) { public static void main(String[] args) {
bank = new Bank("Spaßkasse"); //Bank.loadBankData(); bank = Bank.loadBankData();
willkommen(); willkommen();
hauptmenü(); hauptmenü();
@ -24,7 +24,6 @@ public class BankUI {
System.out.println("Aufgabe auswählen:"); System.out.println("Aufgabe auswählen:");
System.out.println("1) Konto anlegen"); System.out.println("1) Konto anlegen");
System.out.println("2) Geld einzahlen"); System.out.println("2) Geld einzahlen");
System.out.println("3) Kontenliste anzeigen");
System.out.println("9) Programm beenden"); System.out.println("9) Programm beenden");
System.out.print("Eingabe > "); System.out.print("Eingabe > ");
@ -34,7 +33,6 @@ public class BankUI {
switch (eingabe) { switch (eingabe) {
case 1 -> kontoAnlegenScreen(); case 1 -> kontoAnlegenScreen();
case 2 -> geldEinzahlenScreen(); case 2 -> geldEinzahlenScreen();
case 3 -> kontenlisteAnzeigenScreen();
case 9 -> aufWiedersehenScreen(); case 9 -> aufWiedersehenScreen();
} }
@ -60,14 +58,6 @@ public class BankUI {
boolean erg = bank.geldEinzahlen(kontonummer, betrag); boolean erg = bank.geldEinzahlen(kontonummer, betrag);
System.out.println("Geld einzahlen " + (erg?"": "nicht ") + "erfolgreich."); System.out.println("Geld einzahlen " + (erg?"": "nicht ") + "erfolgreich.");
} }
private static void kontenlisteAnzeigenScreen() {
System.out.println("Hier sind die Konten:");
for (String ke : bank.getKontendaten()) {
System.out.println(ke.toString());
}
}
private static void aufWiedersehenScreen() { private static void aufWiedersehenScreen() {
System.out.println("Danke für Ihren Besuch und auf baldiges Wiedersehen!"); System.out.println("Danke für Ihren Besuch und auf baldiges Wiedersehen!");

View File

@ -36,13 +36,11 @@ public class Bankkonto implements Serializable {
return kontostand; return kontostand;
} }
public boolean geldAuszahlen(double betrag) { // TODO
if (kontostand - betrag >= 0) { // Geld soll nur ausgezahlt werden, wenn das Konto
kontostand -= betrag; // auch gedeckt ist
return true; public double geldAuszahlen(double betrag) {
} return -1;
return false;
} }
// TODO // TODO
@ -55,9 +53,4 @@ public class Bankkonto implements Serializable {
return null; return null;
} }
@Override
public String toString() {
return "Bankkonto [name=" + name + ", kontonummer=" + kontonummer + "]";
}
} }

View File

@ -1,18 +0,0 @@
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;
}
}