Praktikumsaufgabe durchgeführt.
This commit is contained in:
parent
41cd636542
commit
18bd29576c
19
Buch.java
19
Buch.java
|
@ -6,18 +6,18 @@
|
|||
*/
|
||||
public class Buch {
|
||||
public String titel;
|
||||
private int isbn;
|
||||
private String isbn;
|
||||
// Der aktuelle Bestand
|
||||
private int b;
|
||||
private int bestand;
|
||||
|
||||
/**
|
||||
* Erzeugt ein Buch mit den spezifizierten Werten fuer
|
||||
* Titel und ISBN-Nummer und setzt den Bestand auf 0.
|
||||
* @param buchTitel Der Buchtitel.
|
||||
*/
|
||||
public Buch(String buchTitel) {
|
||||
titel = buchTitel
|
||||
isbn = buchISBN;
|
||||
public Buch(String buchTitel, String buchIsbn) {
|
||||
titel = buchTitel;
|
||||
isbn = buchIsbn;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -25,7 +25,7 @@ public class Buch {
|
|||
* @return Der Bestand.
|
||||
*/
|
||||
public int bestand() {
|
||||
return b;
|
||||
return bestand;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -33,16 +33,15 @@ public class Buch {
|
|||
* @param veraenderung Die Veraenderung des Bestands.
|
||||
*/
|
||||
public void veraendereBestand(int veraenderung) {
|
||||
b = b + veraenderung;
|
||||
return b;
|
||||
bestand = bestand + veraenderung;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gibt die Informationen eines Buches aus.
|
||||
*/
|
||||
public String output() {
|
||||
public void informationenAusgeben() {
|
||||
System.out.println("Titel: " + titel);
|
||||
System.out.println("ISBN-13: " + isbn);
|
||||
System.out.println("Bestand: " + b);
|
||||
System.out.println("Bestand: " + bestand);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue