Dynamic array for simple types.
Dynamic array for simple types. Template class TArray<TYPE> implements an array of elements of simple type TYPE. Simple means that the type may be char, way in which the TArray is working with its elements: it's not trying to execute elements' constructors, destructors or copy operators. It's just doing bitwise copy. Except for this it's pretty much the same as DArray.Please note that most of the methods are implemented in the base classes ArrayBase and ArrayBaseT.
TArray(int hibound)
TArray(int lobound, int hibound)
hibound - upper bound of the initial subscript range.
Alphabetic index HTML hierarchy of classes or Java