CObArray();
Constructs an empty CObject pointer array. The array grows one element at a time.
See the CObList constructor for a listing of the CAge class used in all collection examples.
CObArray array; // Array on the stack
CObArray* parray = new CObArray; // Array on the heap
CObList constructor