CObArray::GetUpperBound
Restituisce il limite superiore corrente della matrice.
INT_PTR GetUpperBound( ) const;
Valore restituito
Indice del limite superiore (in base zero).
Note
Poiché gli indici di matrice in base zero, la funzione restituisce un valore 1 meno GetSize.
La condizione GetUpperBound( ) – = 1 indica che la matrice non contiene elementi.
Nella tabella seguente vengono illustrate altre funzioni membro che sono simili a CObArray::GetUpperBound.
Classe |
Funzione membro |
---|---|
Const di INT_PTR GetUpperBound( ); |
|
Const di INT_PTR GetUpperBound( ); |
|
Const di INT_PTR GetUpperBound( ); |
|
Const di INT_PTR GetUpperBound( ); |
|
Const di INT_PTR GetUpperBound( ); |
|
Const di INT_PTR GetUpperBound( ); |
Esempio
Vedere CObList::CObList per un elenco CAge utilizzata in tutti gli esempi di raccolta.
CObArray arr;
arr.Add(new CAge(21)); // Element 0
arr.Add(new CAge(40)); // Element 1
ASSERT(arr.GetUpperBound() == 1); // Largest index
Requisiti
Header: afxcoll.h