class Drikke{ int maxInnhold; int innhold; String type = "null"; public Drikke(int stoerrelse){ maxInnhold = stoerrelse; innhold = maxInnhold; settType(); } public void settType(){ type = "drikke"; } @Override public String toString(){ return "Flasken innholder " + innhold + " dl med " + type; } }