Come aggiornare il valore per una chiave specifica in un dizionario Dictionary<string, int>
?
Come aggiornare il valore per una chiave specifica in un dizionario Dictionary<string, int>
?
Risposte:
Basta puntare al dizionario su una determinata chiave e assegnare un nuovo valore:
myDictionary[myKey] = myNewValue;
È possibile accedendo alla chiave come indice
per esempio:
Dictionary<string, int> dictionary = new Dictionary<string, int>();
dictionary["test"] = 1;
dictionary["test"] += 1;
Console.WriteLine (dictionary["test"]); // will print 2
++dictionary["test"];
o dictionary["test"]++;
ma solo se c'è una voce nel dizionario con il valore chiave "test" - esempio: if(dictionary.ContainsKey("test")) ++dictionary["test"];
else dictionary["test"] = 1; // create entry with key "test"
Puoi seguire questo approccio:
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);
}
}
Il vantaggio che ottieni qui è che controlli e ottieni il valore della chiave corrispondente in 1 solo accesso al dizionario. Se si utilizza ContainsKey
per verificare l'esistenza e aggiornare il valore utilizzando, dic[key] = val + newValue;
si accede al dizionario due volte.
dic.Add(key, newValue);
te puoi usare use dic[key] = newvalue;
.
Usa LINQ: accedi al dizionario per la chiave e modifica il valore
Dictionary<string, int> dict = new Dictionary<string, int>();
dict = dict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value + 1);
Ecco un modo per aggiornare con un indice molto simile a foo[x] = 9
dove x
è una chiave e 9 è il valore
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;
}
}
aggiornamento - modifica solo esistente. Per evitare effetti collaterali dell'uso dell'indicizzatore:
int val;
if (dic.TryGetValue(key, out val))
{
// key exist
dic[key] = val;
}
aggiorna o (aggiungi nuovo se il valore non esiste in dic)
dic[key] = val;
per esempio:
d["Two"] = 2; // adds to dictionary because "two" not already present
d["Two"] = 22; // updates dictionary because "two" is now present
Questo potrebbe funzionare per te:
Scenario 1: tipi primitivi
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;
Scenario 2: l'approccio che ho usato per un elenco come valore
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;
Spero sia utile per qualcuno che ha bisogno di aiuto.