Skip to content

Latest commit

 

History

History
87 lines (61 loc) · 5.61 KB

cuintarray-class.md

File metadata and controls

87 lines (61 loc) · 5.61 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: CUIntArray Class
CUIntArray Class
11/04/2016
CUIntArray
AFXCOLL/CUIntArray
AFXCOLL/CUIntArray::CUIntArray
AFXCOLL/CUIntArray::Add
AFXCOLL/CUIntArray::Append
AFXCOLL/CUIntArray::Copy
AFXCOLL/CUIntArray::ElementAt
AFXCOLL/CUIntArray::FreeExtra
AFXCOLL/CUIntArray::GetAt
AFXCOLL/CUIntArray::GetCount
AFXCOLL/CUIntArray::GetData
AFXCOLL/CUIntArray::GetSize
AFXCOLL/CUIntArray::GetUpperBound
AFXCOLL/CUIntArray::InsertAt
AFXCOLL/CUIntArray::IsEmpty
AFXCOLL/CUIntArray::RemoveAll
AFXCOLL/CUIntArray::RemoveAt
AFXCOLL/CUIntArray::SetAt
AFXCOLL/CUIntArray::SetAtGrow
AFXCOLL/CUIntArray::SetSize
CUIntArray [MFC], CUIntArray
CUIntArray [MFC], Add
CUIntArray [MFC], Append
CUIntArray [MFC], Copy
CUIntArray [MFC], ElementAt
CUIntArray [MFC], FreeExtra
CUIntArray [MFC], GetAt
CUIntArray [MFC], GetCount
CUIntArray [MFC], GetData
CUIntArray [MFC], GetSize
CUIntArray [MFC], GetUpperBound
CUIntArray [MFC], InsertAt
CUIntArray [MFC], IsEmpty
CUIntArray [MFC], RemoveAll
CUIntArray [MFC], RemoveAt
CUIntArray [MFC], SetAt
CUIntArray [MFC], SetAtGrow
CUIntArray [MFC], SetSize
d71f3d8f-ef9f-4e48-9b69-7782c0e2ddf7

CUIntArray Class

Supports arrays of unsigned integers.

Syntax

class CUIntArray : public CObject

Members

The member functions of CUIntArray are similar to the member functions of class CObArray. Because of this similarity, you can use the CObArray reference documentation for member function specifics. Wherever you see a CObject pointer as a function parameter or return value, substitute a UINT.

CObject* CObArray::GetAt( int <nIndex> ) const;

for example, translates to

UINT CUIntArray::GetAt( int <nIndex> ) const;

Public Constructors

Name Description
CUIntArray::CUIntArray Constructs an empty array.

Public Methods

Name Description
CUIntArray::Add Adds an element to the end of the array; grows the array if necessary.
CUIntArray::Append Appends another array to the array; grows the array if necessary.
CUIntArray::Copy Copies another array to the array; grows the array if necessary.
CUIntArray::ElementAt Returns a temporary reference to the element pointer within the array.
CUIntArray::FreeExtra Frees all unused memory above the current upper bound.
CUIntArray::GetAt Returns the value at a given index.
CUIntArray::GetCount Gets the number of elements in this array.
CUIntArray::GetData Allows access to elements in the array. Can be NULL.
CUIntArray::GetSize Gets the number of elements in this array.
CUIntArray::GetUpperBound Returns the largest valid index.
CUIntArray::InsertAt Inserts an element (or all the elements in another array) at a specified index.
CUIntArray::IsEmpty Determines if the array is empty.
CUIntArray::RemoveAll Removes all the elements from this array.
CUIntArray::RemoveAt Removes an element at a specific index.
CUIntArray::SetAt Sets the value for a given index; array not allowed to grow.
CUIntArray::SetAtGrow Sets the value for a given index; grows the array if necessary.
CUIntArray::SetSize Sets the number of elements to be contained in this array.

Public Operators

Name Description
CUIntArray::operator [ ] Sets or gets the element at the specified index.

Remarks

An unsigned integer, or UINT, differs from words and doublewords in that the physical size of a UINT can change depending on the target operating environment. A UINT is the same size as a doubleword.

CUIntArray incorporates the IMPLEMENT_DYNAMIC macro to support run-time type access and dumping to a CDumpContext object. If you need a dump of individual unsigned integer elements, you must set the depth of the dump context to 1 or greater. Unsigned integer arrays cannot be serialized.

Note

Before using an array, use SetSize to establish its size and allocate memory for it. If you do not use SetSize, adding elements to your array causes it to be frequently reallocated and copied. Frequent reallocation and copying are inefficient and can fragment memory.

For more information on using CUIntArray, see the article Collections.

Inheritance Hierarchy

CObject

CUIntArray

Requirements

Header: afxcoll.h

See also

CObject Class
Hierarchy Chart