Bei der Ausgabe der ArrayList wird nun was "komisches" ausgegeben:
Ich habe eine Klasse in der Attribute und Methoden sind. Mit einer anderen Datei wollte ich mit einer ArrayList alles besser strukturieren. Woran liegt das das die Ausgabe was "falsches" ausgibt?
Code der Klasse:
Main Code:
Ich habe eine Klasse in der Attribute und Methoden sind. Mit einer anderen Datei wollte ich mit einer ArrayList alles besser strukturieren. Woran liegt das das die Ausgabe was "falsches" ausgibt?
Code der Klasse:
Java:
public class Handy2 {
// Anfang Attribute
private String handyNr;
private String handyBesitzer;
private double handyGuthaben;
private boolean ausreichendGuthaben;
// Ende Attribute
public Handy2(String handyNr, String handyBesitzer, double handyGuthaben) {
this.handyNr = handyNr;
this.handyBesitzer = handyBesitzer;
this.handyGuthaben = handyGuthaben;
this.ausreichendGuthaben = false;
}
// Anfang Methoden
public String getHandyNr() {
return handyNr;
}
public void setHandyNr(String handyNrNeu) {
handyNr = handyNrNeu;
}
public String getHandyBesitzer() {
return handyBesitzer;
}
public void setHandyBesitzer(String handyBesitzerNeu) {
handyBesitzer = handyBesitzerNeu;
}
public double getHandyGuthaben() {
return handyGuthaben;
}
public void setHandyGuthaben(double handyGuthabenNeu) {
handyGuthaben = handyGuthabenNeu;
}
public boolean getAusreichendGuthaben() {
return ausreichendGuthaben;
}
public void setAusreichendGuthaben(boolean ausreichendGuthabenNeu) {
ausreichendGuthaben = ausreichendGuthabenNeu;
}
public void ausgabe() {
System.out.println("Handynummer: " +handyNr);
System.out.println("Handy Besitzer: " +handyBesitzer);
System.out.println("Handy Guthaben: " +handyGuthaben +" Euro");
}
public void warnungGuthaben() {
if (handyGuthaben < 5) {
System.out.println("Sie haben nur noch 5 Euro Guthaben!");
} // end of if
else {
System.out.println("Sie haben noch ausreichend Handy Guthaben!");
} // end of if-else
}
public void erhoehenGuthaben(double pGuthaben) {
handyGuthaben = handyGuthaben + pGuthaben;
System.out.println("Ihr Handy Guthaben wurde erhöht und beträgt nun " +handyGuthaben +" Euro");
}
// Ende Methoden
} // end of Handy2
Main Code:
Java:
import java.util.ArrayList;
public class UIHandy2 {
public static void main(String[] args) {
Handy2 nokia = new Handy2("0173-123456","Max Mustermann",4.5);
Handy2 samsung = new Handy2("0163-789123","Daniel Aldushyn",10);
nokia.ausgabe();
System.out.println();
nokia.warnungGuthaben();
System.out.println();
nokia.erhoehenGuthaben(4);
nokia.warnungGuthaben();
System.out.println();
ArrayList <Handy2> liste = new ArrayList <Handy2>();
liste.add(nokia);
liste.add(samsung);
System.out.println("Länger der Liste: " +liste.size());
liste.clear();
System.out.println("Gebe true aus wenn Liste leer ist: " +liste.isEmpty());
liste.add(nokia);
System.out.println("Länge nach einsatz eines Objekts: " +liste.size());
liste.add(samsung);
System.out.println();
for (Handy2 object : liste ) {
System.out.println(object +" \n");
} // end of for
} // end of main
} // end of class UIHandy2