1
0
Fork 0

Erweiterung mit Geheimnisprinzip

main
Oliver Hummel 2024-01-16 13:29:33 +01:00
parent 353797a7a2
commit 9d4a7aca59
3 changed files with 29 additions and 1 deletions

View File

@ -31,6 +31,19 @@ public class Bank implements Serializable {
public String getName() {
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) {
Bankkonto bk = kontoFinden(kontonummer);

View File

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

View File

@ -53,4 +53,9 @@ public class Bankkonto implements Serializable {
return null;
}
@Override
public String toString() {
return "Bankkonto [name=" + name + ", kontonummer=" + kontonummer + "]";
}
}