CObArray::GetUpperBound
返回此数组当前上限。
INT_PTR GetUpperBound( ) const;
返回值
上限的索引(从零开始)。
备注
由于数组索引从零开始,此函数比 GetSize返回值1。
情况 GetUpperBound( ) = – 1指示该数组不包含元素。
下表显示类似于 CObArray::GetUpperBound的其他成员函数。
类 |
成员函数 |
---|---|
INT_PTR GetUpperBound( ) 常量; |
|
INT_PTR GetUpperBound( ) 常量; |
|
INT_PTR GetUpperBound( ) 常量; |
|
INT_PTR GetUpperBound( ) 常量; |
|
INT_PTR GetUpperBound( ) 常量; |
|
INT_PTR GetUpperBound( ) 常量; |
示例
提供用于所有集合示例的列表 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