SortedDictionary<TKey,TValue>.ContainsKey(TKey) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Determina se o SortedDictionary<TKey,TValue> contém um elemento com a chave especificada.
public:
virtual bool ContainsKey(TKey key);
public bool ContainsKey (TKey key);
abstract member ContainsKey : 'Key -> bool
override this.ContainsKey : 'Key -> bool
Public Function ContainsKey (key As TKey) As Boolean
Parâmetros
- key
- TKey
A chave a ser localizada no SortedDictionary<TKey,TValue>.
Retornos
true
se o SortedDictionary<TKey,TValue> contiver um elemento com a chave especificada; caso contrário, false
.
Implementações
Exceções
key
é null
.
Exemplos
O exemplo de código a seguir mostra como usar o ContainsKey método para testar se existe uma chave antes de chamar o Add método. Ele também mostra como usar o TryGetValue método para recuperar valores, que é uma maneira eficiente de recuperar valores quando um programa tenta frequentemente chaves que não estão no dicionário. Por fim, ele mostra a maneira menos eficiente de testar se as chaves existem usando a Item[] propriedade (o indexador em C#).
Este exemplo de código faz parte de um exemplo maior fornecido para a SortedDictionary<TKey,TValue> classe .
// ContainsKey can be used to test keys before inserting
// them.
if (!openWith.ContainsKey("ht"))
{
openWith.Add("ht", "hypertrm.exe");
Console.WriteLine("Value added for key = \"ht\": {0}",
openWith["ht"]);
}
' ContainsKey can be used to test keys before inserting
' them.
If Not openWith.ContainsKey("ht") Then
openWith.Add("ht", "hypertrm.exe")
Console.WriteLine("Value added for key = ""ht"": {0}", _
openWith("ht"))
End If
// 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 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
Comentários
Esse método é uma operação O(log n
).