CObArray::GetUpperBound
傳回陣列目前上限。
INT_PTR GetUpperBound( ) const;
傳回值
上限的索引 (以零為起始)。
備註
由於陣列是以零起始的索引,這個函式會傳回值 1。 GetSize。
條件 GetUpperBound( ) = – 1 表示陣列不包含項目。
下表顯示類似 CObArray::GetUpperBound的其他成員函式。
類別 |
成員函式 |
---|---|
INT_PTR GetUpperBound const (); |
|
INT_PTR GetUpperBound const (); |
|
INT_PTR GetUpperBound const (); |
|
INT_PTR GetUpperBound const (); |
|
INT_PTR GetUpperBound const (); |
|
INT_PTR GetUpperBound const (); |
範例
針對所有集合範例的 CAge 類別的目錄參閱 CObList::CObList 。
CObArray arr;
arr.Add(new CAge(21)); // Element 0
arr.Add(new CAge(40)); // Element 1
ASSERT(arr.GetUpperBound() == 1); // Largest index
需求
Header: afxcoll.h