CTypedPtrArray Class
Provides a type-safe "wrapper" for objects of class CPtrArray or CObArray.
template< class BASE_CLASS, class TYPE > class CTypedPtrArray : public BASE_CLASS
|
Name |
Description |
|---|---|
|
Adds a new element to the end of an array. Grows the array if necessary |
|
|
Adds the contents of one array to the end of another. Grows the array if necessary |
|
|
Copies another array to the array; grows the array if necessary. |
|
|
Returns a temporary reference to the element pointer within the array. |
|
|
Returns the value at a given index. |
|
|
Inserts an element (or all the elements in another array) at a specified index. |
|
|
Sets the value for a given index; array not allowed to grow. |
|
|
Sets the value for a given index; grows the array if necessary. |
When you use CTypedPtrArray rather than CPtrArray or CObArray, the C++ type-checking facility helps eliminate errors caused by mismatched pointer types.
In addition, the CTypedPtrArray wrapper performs much of the casting that would be required if you used CObArray or CPtrArray.
Because all CTypedPtrArray functions are inline, use of this template does not significantly affect the size or speed of your code.
For more information on using CTypedPtrArray, see the articles Collections and Template-Based Classes.