SortedList<TKey,TValue>.TryGetValue(TKey, TValue) Yöntem

Tanım

Belirtilen anahtarla ilişkili değeri alır.

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

Parametreler

key
TKey

Değerini alması gereken anahtar.

value
TValue

Bu yöntem döndürdüğünde, anahtar bulunursa belirtilen anahtarla ilişkili değer; aksi takdirde, parametrenin value türü için varsayılan değerdir. Bu parametre, başlatmadan iletilir.

Döndürülenler

true belirtilen SortedList<TKey,TValue> anahtara sahip bir öğe içeriyorsa; değilse, false.

Uygulamalar

Özel durumlar

key, null değeridir.

Örnekler

Örnekte, sıralı listede olmayan anahtarları sık sık deneyen bir programdaki değerleri almak için yönteminin daha verimli bir yol olarak nasıl kullanılacağı TryGetValue gösterilmektedir. Karşıtlık için örnekte, özelliğin Item[] (C#'deki dizin oluşturucu) var olmayan anahtarları almaya çalışırken nasıl özel durumlar oluşturacakları da gösterilir.

Bu kod örneği, sınıfı için SortedList<TKey,TValue> sağlanan daha büyük bir örneğin parçasıdır.

// 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."

Açıklamalar

Bu yöntem, yönteminin ve özelliğinin ContainsKey işlevselliğini Item[] birleştirir.

Anahtar bulunamazsa, value parametre değer türü TValueiçin uygun varsayılan değeri alır; örneğin, tamsayı türleri false için sıfır (0), Boole türleri ve null başvuru türleri için.

Bu yöntem ikili arama gerçekleştirir; bu nedenle, bu yöntem bir O(log n) işlemidir ve burada n olur Count.

Şunlara uygulanır

Ayrıca bkz.