I cant understand?? Plzz help
package com.codegym.task.task02.task0204;
/*
Family relations
*/
public class Solution {
public static void main(String[] args) {
Man man = new Man();
man.age = 54;
man.height = 6;
Women wife = man;
Women women = new Women();
women.age = 37;
women.height = 5;
Man husband = women;
}
public static class Man {
public int age;
public int height;
public Woman wife;
}
public static class Woman {
public int age;
public int height;
public Man husband;
}
}