Class relationships: Correct Solution


Consider the follow class declarations:

public class Brerras {
    public File getFoa() {
        ...
    }
}

public class Chau {
    public Brerras getCird() {
        ...
    }

    public String getCuRo() {
        ...
    }

    public int getChei() {
        ...
    }
}

public class Nareil extends Chau {
    public String getEang() {
        ...
    }
}

public class Spap {
    public byte[] getOtQo() {
        ...
    }

    public List<Nareil> getFlas() {
        ...
    }
}
  1. Draw a diagram showing the class relationships.

    You only need to diagram the classes listed above. You only need to show the name of each class; do not show their methods or properties.

    Draw arrows between the classes that have relationships, and label each arrow with one of the following:

    Make sure your arrows point in the correct direction!

    Solution

  2. Given the following variable:

    Spap na

    ...and the following method:

    public void process(int item)

    ...write code to process the chei of the first fla of na.

    Solution

    for (Nareil fla : na.getFlasList()) {
        process(fla.getChau().getChei());
    }

Related puzzles: