Làm cách nào để cập nhật giá trị cho một khóa cụ thể trong từ điển Dictionary<string, int>
?
Làm cách nào để cập nhật giá trị cho một khóa cụ thể trong từ điển Dictionary<string, int>
?
Câu trả lời:
Chỉ cần trỏ đến từ điển tại khóa đã cho và gán một giá trị mới:
myDictionary[myKey] = myNewValue;
Có thể bằng cách truy cập khóa dưới dạng chỉ mục
ví dụ:
Dictionary<string, int> dictionary = new Dictionary<string, int>();
dictionary["test"] = 1;
dictionary["test"] += 1;
Console.WriteLine (dictionary["test"]); // will print 2
++dictionary["test"];
hoặc dictionary["test"]++;
nhưng chỉ khi có một mục trong từ điển với giá trị khóa "kiểm tra" - ví dụ: if(dictionary.ContainsKey("test")) ++dictionary["test"];
else dictionary["test"] = 1; // create entry with key "test"
Bạn có thể làm theo phương pháp này:
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);
}
}
Lợi thế bạn nhận được ở đây là bạn kiểm tra và nhận giá trị của khóa tương ứng chỉ trong 1 lần truy cập vào từ điển. Nếu bạn sử dụng ContainsKey
để kiểm tra sự tồn tại và cập nhật giá trị sử dụng dic[key] = val + newValue;
thì bạn đang truy cập từ điển hai lần.
dic.Add(key, newValue);
bạn có thể sử dụng sử dụng dic[key] = newvalue;
.
Sử dụng LINQ: Truy cập vào từ điển cho khóa và thay đổi giá trị
Dictionary<string, int> dict = new Dictionary<string, int>();
dict = dict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value + 1);
Đây là một cách để cập nhật bởi một chỉ số giống như foo[x] = 9
nơi x
là một chìa khóa và 9 là giá trị
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;
}
}
cập nhật - chỉ sửa đổi tồn tại. Để tránh tác dụng phụ của việc sử dụng bộ chỉ mục:
int val;
if (dic.TryGetValue(key, out val))
{
// key exist
dic[key] = val;
}
cập nhật hoặc (thêm mới nếu giá trị không tồn tại trong dic)
dic[key] = val;
ví dụ:
d["Two"] = 2; // adds to dictionary because "two" not already present
d["Two"] = 22; // updates dictionary because "two" is now present
Điều này có thể làm việc cho bạn:
Kịch bản 1: kiểu nguyên thủy
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;
Kịch bản 2: Cách tiếp cận tôi sử dụng cho Danh sách làm Giá trị
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;
Hy vọng nó hữu ích cho người cần giúp đỡ.