class DyrKattEksempel{ public static void main(String[] args) { Dyr katt1 = new Katt("Pus", 1, "Oslo"); System.out.println(katt1.hentNavn()); System.out.println(katt1.hentAlder()); //System.out.println(katt1.hentBosted()) Katt katt2 = (Katt) katt1; System.out.println(katt2.hentBosted()); System.out.println(katt2.hentNavn()); } }