SortedList<TKey,TValue>.TryGetValue(TKey, TValue) Metoda

Definice

Získá hodnotu přidruženou k zadanému klíči.

public:
 virtual bool TryGetValue(TKey key, [Runtime::InteropServices::Out] TValue % value);
public bool TryGetValue (TKey key, out TValue value);
abstract member TryGetValue : 'Key * 'Value -> bool
override this.TryGetValue : 'Key * 'Value -> bool
Public Function TryGetValue (key As TKey, ByRef value As TValue) As Boolean

Parametry

key
TKey

Klíč, jehož hodnotu chcete získat.

value
TValue

Když tato metoda vrátí hodnotu přidruženou k zadanému klíči, pokud je klíč nalezen; v opačném případě výchozí hodnota pro typ parametru value . Tento parametr se předává neinicializovaný.

Návraty

true pokud objekt SortedList<TKey,TValue> obsahuje prvek se zadaným klíčem, falsejinak hodnota .

Implementuje

Výjimky

key je null.

Příklady

Příklad ukazuje, jak použít metodu TryGetValue jako efektivnější způsob načítání hodnot v programu, který často zkouší klíče, které nejsou v seřazený seznam. Pro srovnání příklad také ukazuje, jak Item[] vlastnost (indexer v jazyce C#) vyvolává výjimky při pokusu o načtení neexistujících klíčů.

Tento příklad kódu je součástí většího příkladu SortedList<TKey,TValue> pro třídu .

// When a program often has to try keys that turn out not to
// be in the list, TryGetValue can be a more efficient
// way to retrieve values.
String^ value = "";
if (openWith->TryGetValue("tif", value))
{
    Console::WriteLine("For key = \"tif\", value = {0}.", value);
}
else
{
    Console::WriteLine("Key = \"tif\" is not found.");
}
// When a program often has to try keys that turn out not to
// be in the list, TryGetValue can be a more efficient
// way to retrieve values.
string value = "";
if (openWith.TryGetValue("tif", out value))
{
    Console.WriteLine("For key = \"tif\", value = {0}.", value);
}
else
{
    Console.WriteLine("Key = \"tif\" is not found.");
}
' When a program often has to try keys that turn out not to
' be in the list, TryGetValue can be a more efficient 
' way to retrieve values.
Dim value As String = ""
If openWith.TryGetValue("tif", value) Then
    Console.WriteLine("For key = ""tif"", value = {0}.", value)
Else
    Console.WriteLine("Key = ""tif"" is not found.")
End If
// When a program often has to try keys that turn out not to
// be in the list, TryGetValue can be a more efficient
// way to retrieve values.
match openWith.TryGetValue("tif") with
| true, value ->
    printfn "For key = \"tif\", value = {value}."
| false, _ ->
    printfn "Key = \"tif\" is not found."
// The indexer throws an exception if the requested key is
// not in the list.
try
{
    Console::WriteLine("For key = \"tif\", value = {0}.",
        openWith["tif"]);
}
catch (KeyNotFoundException^)
{
    Console::WriteLine("Key = \"tif\" is not found.");
}
// The indexer throws an exception if the requested key is
// not in the list.
try
{
    Console.WriteLine("For key = \"tif\", value = {0}.",
        openWith["tif"]);
}
catch (KeyNotFoundException)
{
    Console.WriteLine("Key = \"tif\" is not found.");
}
' The default Item property throws an exception if the requested
' key is not in the list.
Try
    Console.WriteLine("For key = ""tif"", value = {0}.", _
        openWith("tif"))
Catch 
    Console.WriteLine("Key = ""tif"" is not found.")
End Try
// The indexer throws an exception if the requested key is
// not in the list.
try
    printfn $"""For key = "tif", value = {openWith["tif"]}."""
with 
    | :? KeyNotFoundException ->
        printfn "Key = \"tif\" is not found."

Poznámky

Tato metoda kombinuje funkce ContainsKey metody a Item[] vlastnost .

Pokud klíč není nalezen, value získá parametr odpovídající výchozí hodnotu pro typ TValuehodnoty, například nula (0) pro celočíselné typy, false pro logické typy a null pro odkazové typy.

Tato metoda provádí binární vyhledávání; Proto je tato metoda operací O(log n), kde n je Count.

Platí pro

Viz také