So say I have this class:
public class PositionList {
private Position[] data = new Position[0];
private int size = 0;
Now lets say I create a new PositionList object with the default constructor, so no arguments like so:
PositionList list = new PositionList();
Does the new list object have any attributes? Does it have a size component or a data component? What are its characteristics?