Dictionary<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

Alınacak değerin anahtarı.

value
TValue

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

Döndürülenler

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

Uygulamalar

Özel durumlar

key, null değeridir.

Örnekler

Örnekte, sözlükte TryGetValue olmayan anahtarları sık sık deneyen bir programdaki değerleri almak için yönteminin nasıl daha verimli bir şekilde kullanılacağı gösterilmektedir. Buna karşılık, örnekte ayrıca özelliğin Item[] (C# dilindeki dizin oluşturucu) var olmayan anahtarları almaya çalışırken nasıl özel durumlar attığı da gösterilir.

Bu kod örneği, sınıfı için Dictionary<TKey,TValue> sağlanan daha büyük bir örneğin parçasıdır (openWith bu örnekte kullanılan Sözlüğün adıdır).

// When a program often has to try keys that turn out not to
// be in the dictionary, 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 dictionary, 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 dictionary, 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
// The indexer throws an exception if the requested key is
// not in the dictionary.
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 dictionary.
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 dictionary.
Try
    Console.WriteLine("For key = ""tif"", value = {0}.", _
        openWith("tif"))
Catch 
    Console.WriteLine("Key = ""tif"" is not found.")
End Try

Açıklamalar

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

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

TryGetValue Kodunuz sıklıkla sözlükte olmayan anahtarlara erişmeye çalışırsa yöntemini kullanın. Bu yöntemin kullanılması, özelliği tarafından Item[] atılan öğesini KeyNotFoundException yakalamaktan daha verimlidir.

Bu yöntem bir O(1) işlemine yaklaşır.

Şunlara uygulanır

Ayrıca bkz.