class CArrayFixFlat : public CArrayFix |
Array of fixed length objects contained within a flat dynamic buffer.
The elements of the array are instances of the template class T.
The flat dynamic buffer is an instance of a CBufFlat.
The elements can be T or R type objects and must have an accessible default constructor.
Note that, where possible, use the RArray<class T> class as this is more efficient.
Public Member Functions | |
---|---|
CArrayFixFlat(TInt) | |
void | SetReserveL(TInt) |
CArrayFixFlat | ( | TInt | aGranularity | ) | [inline, explicit] |
Constructs a flat array of fixed length objects with the specified granularity.
The length of all array elements is the length of the class passed as the template parameter. The length must be non-zero.
Note that no memory is allocated to the array buffer by this constructor.
TInt aGranularity | The granularity of the array. |
void | SetReserveL | ( | TInt | aCount | ) | [inline] |
Reserves space in the array buffer.
If necessary, the array buffer is allocated or re-allocated so that it can accommodate the specified number of elements.
After a successful call to this function, elements can be added to the array and the process is guaranteed not to fail for lack of memory - provided the total number of elements does not exceed the number specified in this function.
This function does not increase the number of elements in the array; i.e. the member function CArrayFixBase::Count() returns the same value both before and after a call to CArrayFixFlat::SetReserveL().
TInt aCount | The total number of elements for which space is to be reserved. |
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.