System::Array::LastIndexOf 方法
内容
[
隐藏
]Array::LastIndexOf(const ArrayPtr<ArrayType>&, const ValueType&, int, int) method
确定在由起始索引和范围内元素数量指定的数组项范围中,指定项最后一次出现的索引。
template<typename ArrayType,typename ValueType> static int System::Array<T>::LastIndexOf(const ArrayPtr<ArrayType> &arr, const ValueType &value, int startIndex, int count)
| 参数 | 描述 |
|---|---|
| ArrayType | 目标数组中元素的类型 |
| ValueType | 要在数组中搜索的项的类型 |
| 参数 | 类型 | 描述 |
|---|---|---|
| arr | const ArrayPtr<ArrayType>& | Array 用于搜索指定的项 |
| 值 | const ValueType& | 要确定的项索引 |
| startIndex | int | 搜索开始的索引 |
| count | int | 要搜索的范围内的元素数量 |
ReturnValue
如果找到指定项,则返回其最后一次出现的索引;否则返回 -1
另见
- Typedef ArrayPtr
- Typedef ValueType
- Class Array
- Namespace System
- Library Aspose.Font for C++
Array::LastIndexOf(const ArrayPtr<ArrayType>&, const ValueType&) method
确定数组中指定项最后一次出现的索引。
template<typename ArrayType,typename ValueType> static int System::Array<T>::LastIndexOf(const ArrayPtr<ArrayType> &items, const ValueType &value)
| 参数 | 描述 |
|---|---|
| ArrayType | 目标数组中元素的类型 |
| ValueType | 要在数组中搜索的项的类型 |
| 参数 | 类型 | 描述 |
|---|---|---|
| items | const ArrayPtr<ArrayType>& | Array 用于搜索指定的项 |
| 值 | const ValueType& | 要确定的项索引 |
ReturnValue
如果找到指定项,则返回其最后一次出现的索引;否则返回 -1
另见
- Typedef ArrayPtr
- Typedef ValueType
- Class Array
- Namespace System
- Library Aspose.Font for C++
Array::LastIndexOf(const ArrayPtr<ArrayType>&, const ValueType&, int) method
确定从指定索引开始的数组中,指定项最后一次出现的索引。
template<typename ArrayType,typename ValueType> static int System::Array<T>::LastIndexOf(const ArrayPtr<ArrayType> &items, const ValueType &value, int startIndex)
| 参数 | 描述 |
|---|---|
| ArrayType | 目标数组中元素的类型 |
| ValueType | 要在数组中搜索的项的类型 |
| 参数 | 类型 | 描述 |
|---|---|---|
| items | const ArrayPtr<ArrayType>& | Array 用于搜索指定的项 |
| 值 | const ValueType& | 要确定的项索引 |
| startIndex | int | 搜索开始的索引 |
ReturnValue
如果找到指定项,则返回其最后一次出现的索引;否则返回 -1
另见
- Typedef ArrayPtr
- Typedef ValueType
- Class Array
- Namespace System
- Library Aspose.Font for C++