CObArray::CObArray

Syntax

CObArray();

Remarks

Constructs an empty CObject pointer array. The array grows one element at a time.

Example

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

See Also

CObList constructor