Array.FindLastIndex 方法

定義

搜尋符合指定述詞所定義之條件的項目,並傳回 Array 內最後一次出現或為其一部分之以零為起始的索引。

多載

FindLastIndex<T>(T[], Predicate<T>)

搜尋符合指定之述詞所定義的條件之項目,並傳回整個 Array 內最後一次出現之以為零起始的索引。

FindLastIndex<T>(T[], Int32, Predicate<T>)

搜尋符合指定之述詞所定義的條件之項目,並傳回 Array 中從第一個項目延伸到指定之索引的項目範圍內,最後一個符合項目之以零為起始的索引。

FindLastIndex<T>(T[], Int32, Int32, Predicate<T>)

搜尋符合指定之述詞所定義的條件之項目,並傳回 Array 中包含指定之項目數目,且結束於指定之索引的項目範圍內最後一個符合項目之以零為起始的索引。

範例

下列程式碼範例示範泛型方法的所有三個 FindLastIndex 多載。 建立字串陣列,其中包含 8 個恐龍名稱,其中兩個 (位置 1 和 5) 結尾為 「saurus」。 程式碼範例也會定義名為 EndsWithSaurus 的搜尋述詞方法,此方法會接受字串參數,並傳回布林值,指出輸入字串是否以 「saurus」 結尾。

方法 FindLastIndex<T>(T[], Predicate<T>) 多載會從結尾向後周遊陣列,並接著將每個元素傳遞至 EndsWithSaurus 方法。 當方法傳回 true 位置 5 的專案時 EndsWithSaurus ,搜尋會停止。

備註

在 C#、F# 和 Visual Basic 中,不需要在 Visual Basic 中明確建立 Predicate<string> 委派 (Predicate(Of String)) 。 這些語言會從內容推斷正確的委派,並自動建立它。

方法 FindLastIndex<T>(T[], Int32, Predicate<T>) 多載可用來搜尋從位置 4 開始的陣列,然後繼續回到陣列的開頭。 它會尋找位於位置 1 的專案。 最後, FindLastIndex<T>(T[], Int32, Int32, Predicate<T>) 方法多載是用來搜尋從位置 4 開始的三個元素範圍,並回溯 (也就是元素 4、3 和 2) 。 它會傳回 -1,因為該範圍中沒有以 「saurus」 結尾的恐龍名稱。

C#
using System;

public class Example
{
    public static void Main()
    {
        string[] dinosaurs = { "Compsognathus",
            "Amargasaurus",   "Oviraptor",      "Velociraptor",
            "Deinonychus",    "Dilophosaurus",  "Gallimimus",
            "Triceratops" };

        Console.WriteLine();
        foreach(string dinosaur in dinosaurs)
        {
            Console.WriteLine(dinosaur);
        }

        Console.WriteLine(
            "\nArray.FindLastIndex(dinosaurs, EndsWithSaurus): {0}",
            Array.FindLastIndex(dinosaurs, EndsWithSaurus));

        Console.WriteLine(
            "\nArray.FindLastIndex(dinosaurs, 4, EndsWithSaurus): {0}",
            Array.FindLastIndex(dinosaurs, 4, EndsWithSaurus));

        Console.WriteLine(
            "\nArray.FindLastIndex(dinosaurs, 4, 3, EndsWithSaurus): {0}",
            Array.FindLastIndex(dinosaurs, 4, 3, EndsWithSaurus));
    }

    // Search predicate returns true if a string ends in "saurus".
    private static bool EndsWithSaurus(String s)
    {
        if ((s.Length > 5) &&
            (s.Substring(s.Length - 6).ToLower() == "saurus"))
        {
            return true;
        }
        else
        {
            return false;
        }
    }
}

/* This code example produces the following output:

Compsognathus
Amargasaurus
Oviraptor
Velociraptor
Deinonychus
Dilophosaurus
Gallimimus
Triceratops

Array.FindLastIndex(dinosaurs, EndsWithSaurus): 5

Array.FindLastIndex(dinosaurs, 4, EndsWithSaurus): 1

Array.FindLastIndex(dinosaurs, 4, 3, EndsWithSaurus): -1
 */

FindLastIndex<T>(T[], Predicate<T>)

來源:
Array.cs
來源:
Array.cs
來源:
Array.cs

搜尋符合指定之述詞所定義的條件之項目,並傳回整個 Array 內最後一次出現之以為零起始的索引。

C#
public static int FindLastIndex<T> (T[] array, Predicate<T> match);

類型參數

T

陣列項目的類型。

參數

array
T[]

要搜尋的一維且以零為起始的 Array

match
Predicate<T>

定義要搜尋項目之條件的 Predicate<T>

傳回

符合 match 所定義條件的元素,最後一次出現項目之以零為起始的索引 (若有找到),否則為 -1。

例外狀況

arraynull

-或-

matchnull

備註

Array 從最後一個專案開始向後搜尋,並在第一個元素結束。

Predicate<T>是方法的委派,如果傳遞給它的物件符合委派中定義的條件,則會傳回 true 。 的專案 array 會個別傳遞至 Predicate<T>

這個方法是 O (n) 作業,其中 nLengtharray

另請參閱

適用於

.NET 9 和其他版本
產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

FindLastIndex<T>(T[], Int32, Predicate<T>)

來源:
Array.cs
來源:
Array.cs
來源:
Array.cs

搜尋符合指定之述詞所定義的條件之項目,並傳回 Array 中從第一個項目延伸到指定之索引的項目範圍內,最後一個符合項目之以零為起始的索引。

C#
public static int FindLastIndex<T> (T[] array, int startIndex, Predicate<T> match);

類型參數

T

陣列項目的類型。

參數

array
T[]

要搜尋的一維且以零為起始的 Array

startIndex
Int32

向後搜尋之以零為起始的起始索引。

match
Predicate<T>

定義要搜尋項目之條件的 Predicate<T>

傳回

符合 match 所定義條件的元素,最後一次出現項目之以零為起始的索引 (若有找到),否則為 -1。

例外狀況

arraynull

-或-

matchnull

startIndex 超出 array 的有效索引範圍。

備註

ArraystartIndex 第一個元素開始向後搜尋 , 並結束。

Predicate<T>是方法的委派,如果傳遞給它的物件符合委派中定義的條件,則會傳回 true 。 的專案 array 會個別傳遞至 Predicate<T>

這個方法是 O (n) 作業,其中 n 是從 開始 arraystartIndex 的專案數目。

另請參閱

適用於

.NET 9 和其他版本
產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

FindLastIndex<T>(T[], Int32, Int32, Predicate<T>)

來源:
Array.cs
來源:
Array.cs
來源:
Array.cs

搜尋符合指定之述詞所定義的條件之項目,並傳回 Array 中包含指定之項目數目,且結束於指定之索引的項目範圍內最後一個符合項目之以零為起始的索引。

C#
public static int FindLastIndex<T> (T[] array, int startIndex, int count, Predicate<T> match);

類型參數

T

陣列項目的類型。

參數

array
T[]

要搜尋的一維且以零為起始的 Array

startIndex
Int32

向後搜尋之以零為起始的起始索引。

count
Int32

區段中要搜尋的項目數目。

match
Predicate<T>

定義要搜尋項目之條件的 Predicate<T>

傳回

符合 match 所定義條件的元素,最後一次出現項目之以零為起始的索引 (若有找到),否則為 -1。

例外狀況

arraynull

-或-

matchnull

startIndex 超出 array 的有效索引範圍。

-或-

count 小於零。

-或-

startIndexcount 未指定 array 中的有效區段。

備註

如果 大於 0,則會 Array 從 開始向後 startIndex 搜尋 , count 且結尾為 startIndex 減號 count 加上 1。

Predicate<T>是方法的委派,如果傳遞給它的物件符合委派中定義的條件,則會傳回 true 。 的專案 array 會個別傳遞至 Predicate<T>

這個方法是 O (n) 作業,其中 ncount

另請參閱

適用於

.NET 9 和其他版本
產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0