oder was fehlt noch? public class Solution { public static void main(String[] args) { Katze katze = new Katze(); Hund hund = new Hund(); Fisch fisch = new Fisch(); Frau halter = new Frau(); } public static class Katze { public Frau halter; } public static class Hund { public Frau halter; } public static class Fisch { public Frau halter; } public static class Frau { } }