abstract class Dyr{ protected String navn; protected int alder; Dyr(String navn, int alder){ this.navn = navn; this.alder = alder; } }