public abstract class Bier { public double stammwuerze; public double alkohol; public String hopfung; public String ettikett; public int zustand; // Fortschritt des Brauprozesses in % public Bier() { this.stammwuerze = 0; this.alkohol = 0; this.hopfung = "ohne"; this.ettikett = "ohne"; this.zustand = 0; } }