Bibliothek/Bibliothek.java aktualisiert
This commit is contained in:
parent
87ed36349c
commit
0cdfee8b86
@ -1,28 +1,28 @@
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Bibliothek {
|
||||
private ArrayList<Buch> books = new ArrayList<>();
|
||||
|
||||
public void buchHinzufuegen(Buch buch) {
|
||||
books.add(buch);
|
||||
}
|
||||
|
||||
public Buch buchSuchen(String isbn) {
|
||||
for (Buch buch : books) {
|
||||
if (buch.ISBN.toLowerCase().equals(isbn.toLowerCase())) {
|
||||
return buch;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public void alleBuecherAnzeigen() {
|
||||
for (Buch buch : books) {
|
||||
buch.buchInfo();
|
||||
System.out.println("-".repeat(10));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Bibliothek {
|
||||
private ArrayList<Buch> books = new ArrayList<>();
|
||||
|
||||
public void buchHinzufuegen(Buch buch) {
|
||||
books.add(buch);
|
||||
}
|
||||
|
||||
public Buch buchSuchen(String isbn) {
|
||||
for (Buch buch : books) {
|
||||
if (buch.ISBN.toLowerCase().equals(isbn.toLowerCase())) {
|
||||
return buch;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public void alleBuecherAnzeigen() {
|
||||
for (Buch buch : books) {
|
||||
buch.buchInfo();
|
||||
System.out.println("-".repeat(10));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user