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