Como atualizar o valor de uma chave específica em um dicionário Dictionary<string, int>
?
Como atualizar o valor de uma chave específica em um dicionário Dictionary<string, int>
?
Respostas:
Basta apontar para o dicionário em uma determinada chave e atribuir um novo valor:
myDictionary[myKey] = myNewValue;
É possível acessando a chave como índice
por exemplo:
Dictionary<string, int> dictionary = new Dictionary<string, int>();
dictionary["test"] = 1;
dictionary["test"] += 1;
Console.WriteLine (dictionary["test"]); // will print 2
++dictionary["test"];
ou dictionary["test"]++;
mas apenas se houver uma entrada no dicionário com o valor da chave "teste" - exemplo: if(dictionary.ContainsKey("test")) ++dictionary["test"];
else dictionary["test"] = 1; // create entry with key "test"
Você pode seguir esta abordagem:
void addOrUpdate(Dictionary<int, int> dic, int key, int newValue)
{
int val;
if (dic.TryGetValue(key, out val))
{
// yay, value exists!
dic[key] = val + newValue;
}
else
{
// darn, lets add the value
dic.Add(key, newValue);
}
}
A vantagem que você obtém aqui é que você verifica e obtém o valor da chave correspondente em apenas 1 acesso ao dicionário. Se você ContainsKey
verificar a existência e atualizar o valor usando dic[key] = val + newValue;
, estará acessando o dicionário duas vezes.
dic.Add(key, newValue);
você pode usar use dic[key] = newvalue;
.
Use LINQ: acesso ao dicionário para a chave e altere o valor
Dictionary<string, int> dict = new Dictionary<string, int>();
dict = dict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value + 1);
Aqui está uma maneira de atualizar por um índice, bem como foo[x] = 9
onde x
está uma chave e 9 é o valor
var views = new Dictionary<string, bool>();
foreach (var g in grantMasks)
{
string m = g.ToString();
for (int i = 0; i <= m.Length; i++)
{
views[views.ElementAt(i).Key] = m[i].Equals('1') ? true : false;
}
}
atualizar - modificar apenas existente. Para evitar o efeito colateral do uso do indexador:
int val;
if (dic.TryGetValue(key, out val))
{
// key exist
dic[key] = val;
}
update ou (adicione novo se o valor não existir no dic)
dic[key] = val;
por exemplo:
d["Two"] = 2; // adds to dictionary because "two" not already present
d["Two"] = 22; // updates dictionary because "two" is now present
Isso pode funcionar para você:
Cenário 1: tipos primitivos
string keyToMatchInDict = "x";
int newValToAdd = 1;
Dictionary<string,int> dictToUpdate = new Dictionary<string,int>{"x",1};
if(!dictToUpdate.ContainsKey(keyToMatchInDict))
dictToUpdate.Add(keyToMatchInDict ,newValToAdd );
else
dictToUpdate[keyToMatchInDict] = newValToAdd; //or you can do operations such as ...dictToUpdate[keyToMatchInDict] += newValToAdd;
Cenário 2: a abordagem que usei para uma lista como valor
int keyToMatch = 1;
AnyObject objInValueListToAdd = new AnyObject("something for the Ctor")
Dictionary<int,List<AnyObject> dictToUpdate = new Dictionary<int,List<AnyObject>(); //imagine this dict got initialized before with valid Keys and Values...
if(!dictToUpdate.ContainsKey(keyToMatch))
dictToUpdate.Add(keyToMatch,new List<AnyObject>{objInValueListToAdd});
else
dictToUpdate[keyToMatch] = objInValueListToAdd;
Espero que seja útil para alguém que precisa de ajuda.