LastIndexOf() 方法用于搜索数组中的项目并返回该项目最后一次出现的索引。
用法:
Function LastIndexOf (ByVal arr() as object, Byval item as integer) as Integer
参数:
- arr:它是指定的整数数组。
- Item:要在数组中搜索的项目。
返回值:它返回数组中最后一次出现的项目的索引。
程序/源代码:
下面给出了演示 Array 类的 LastIndexOf() 方法的源代码。给定的程序已成功编译并执行。
'VB.NET program to demonstrate the LastIndexOf()
'method of Array class.
Imports System
Module Module1
Sub Main()
Dim arr() As Integer = {10, 20, 30, 20, 30}
Dim index As Integer
'Search the specified item in the array and return
'the index of the last occurrence of an item.
index = Array.LastIndexOf(arr, 20)
Console.WriteLine("Index of last occurrence of item {0} is:{1}", 20, index)
Console.WriteLine()
End Sub
End Module
输出:
Index of last occurrence of item 20 is:3 Press any key to continue . . .
说明:
在上面的程序中,我们创建了一个包含 Main() 函数的模块 Module1。 Main() 函数是程序的入口点。
在 Main() 函数中,我们创建了一个数组 arr1。然后我们使用 Array 类的 LastIndexOf() 方法获取数组中最后一次出现的项目的索引。之后,我们在控制台屏幕上打印了项目的索引。
相关用法
- VB.NET Array Reverse()用法及代码示例
- VB.NET Array Resize()用法及代码示例
- VB.NET Array ConstrainedCopy()用法及代码示例
- VB.NET Array Clear()用法及代码示例
- VB.NET Array BinarySearch()用法及代码示例
- VB.NET Array IndexOf()用法及代码示例
- VB.NET Array Sort()用法及代码示例
- VB.NET Array ReferenceEquals()用法及代码示例
- VB.NET Array Copy()用法及代码示例
- VB.NET Asc()用法及代码示例
- VB.NET LTrim()用法及代码示例
- VB.NET DateTime FromBinary()用法及代码示例
- VB.NET CLng()用法及代码示例
- VB.NET RTrim()用法及代码示例
- VB.NET GetChar()用法及代码示例
- VB.NET DateTime ToBinary()用法及代码示例
- VB.NET CInt()用法及代码示例
- VB.NET CULng()用法及代码示例
- VB.NET CDbl()用法及代码示例
- VB.NET LCase()用法及代码示例
注:本文由纯净天空筛选整理自 VB.Net program to demonstrate the LastIndexOf() method of Array class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。