Online_schop/Prudukt.java

36 lines
721 B
Java

public class Prudukt {
private String name;
private int id;
private float preis;
private float gewicht;
// Konstruktor
public Prudukt(String name, int id, float preis, float gewicht) {
this.name = name;
this.id = id;
this.preis = preis;
this.gewicht = gewicht;
}
public String getName() {
return name;
}
public int getId() {
return id;
}
public float getPreis() {
return preis;
}
public float getGewicht() {
return gewicht;
}
@Override
public String toString() {
return String.format("ID: %d, Name: %s, Preis: %.2f Euro, Gewicht: %.2f kg", id, name, preis, gewicht);
}
}