当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


VB.NET Array IndexOf()用法及代码示例


IndexOf() 方法用于搜索数组中的项目并返回该项目第一次出现的索引。

用法:

Function IndexOf (ByVal arr() as object, Byval item as integer) as Integer

参数:

  • arr:它是指定的整数数组。
  • Item:要在数组中搜索的项目。

返回值:它返回该项目在数组中第一次出现的索引。

程序/源代码:

下面给出了演示 Array 类的 IndexOf() 方法的源代码。给定的程序已成功编译并执行。

'VB.NET program to demonstrate the IndexOf() 
'method of Array class.

Imports System

Module Module1
    Sub Main()
        Dim arr() As Integer = {10, 20, 30, 40, 30}
        Dim index As Integer

        'Search the specified item in the array and return 
        'the index of the first occurrence of an item.
        index = Array.IndexOf(arr, 30)

        Console.WriteLine("Index of item {0} is:{1}", 30, index)
        Console.WriteLine()
    End Sub
End Module

输出:

Index of item 30 is:2
Press any key to continue . . .

说明:

在上面的程序中,我们创建了一个包含 Main() 函数的模块 Module1。 Main() 函数是程序的入口点。

在 Main() 函数中,我们创建了一个数组 arr1。然后我们使用 Array 类的 IndexOf() 方法获取该项目在数组中第一次出现的索引。之后,我们在控制台屏幕上打印了项目的索引。





相关用法


注:本文由纯净天空筛选整理自 VB.Net program to demonstrate the IndexOf() method of Array class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。