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 {
}
}
package de.codegym.task.task02.task0213;
/*
Haustiere brauchen Menschen
*/
public class Solution {
public static void main(String[] args) {
//schreib hier deinen Code
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 {
}
}