public SpiralP1 extends World {
...
public SpiralP1(World world) {
super (world);
setName("Sammy Sam");
System.out.println(this);
}
...
}
In the SpiralP1 code fragment above, the statement super(world); is a call to the inherited Turtle constructor. Why must the object world be used in the super call?