93

当我尝试修改项目的值时遇到问题,因为它只是一个只读字段。

KeyValuePair<Tkey, Tvalue>

我尝试了不同的选择,例如:

Dictionary<Tkey, Tvalue>

但我也有同样的问题。有没有办法将值字段设置为新值?

4

7 回答 7

142

你不能修改它,你可以用一个新的替换它。

var newEntry = new KeyValuePair<TKey, TValue>(oldEntry.Key, newValue);

或字典:

dictionary[oldEntry.Key] = newValue;
于 2012-11-19T13:27:34.993 回答
19

在这里,如果你想让 KeyValuePair 可变。

制作一个自定义类。

public class KeyVal<Key, Val>
{
    public Key Id { get; set; }
    public Val Text { get; set; }

    public KeyVal() { }

    public KeyVal(Key key, Val val)
    {
        this.Id = key;
        this.Text = val;
    }
}

所以我们可以让它在 KeyValuePair 中的任何地方使用。

于 2015-07-29T14:16:54.587 回答
9

KeyValuePair<TKey, TValue>是不可变的。您需要使用修改后的键或值创建一个新的。你接下来实际做什么取决于你的场景,以及你到底想做什么......

于 2012-11-19T13:27:28.533 回答
1

KeyValuePair 是不可变的,

namespace System.Collections.Generic
{
  [Serializable]
  public struct KeyValuePair<TKey, TValue>
  {
    public KeyValuePair(TKey key, TValue value);
    public TKey Key { get; }
    public TValue Value { get; }
    public override string ToString();
  }
}

如果您要更新 KeyValuePair 中的任何现有值,则可以尝试删除现有值,然后添加修改后的值

例如:

var list = new List<KeyValuePair<string, int>>();
list.Add(new KeyValuePair<string, int>("Cat", 1));
list.Add(new KeyValuePair<string, int>("Dog", 2));
list.Add(new KeyValuePair<string, int>("Rabbit", 4));

int removalStatus = list.RemoveAll(x => x.Key == "Rabbit");

if (removalStatus == 1)
{
    list.Add(new KeyValuePair<string, int>("Rabbit", 5));
}
于 2019-11-20T10:08:57.397 回答
0
Dictionary<long, int> _rowItems = new Dictionary<long, int>();
  _rowItems.Where(x => x.Value > 1).ToList().ForEach(x => { _rowItems[x.Key] = x.Value - 1; });

对于 Dictionary 我们可以根据某些条件以这种方式更新值。

于 2020-09-29T08:49:55.740 回答
0

您不能修改 KeyValuePair,但可以像这样修改字典值:

foreach (KeyValuePair<String, int> entry in dict.ToList())
{
    dict[entry.Key] = entry.Value + 1;
}

或像这样:

foreach (String entry in dict.Keys.ToList())
{
    dict[entry] = dict[entry] + 1;
};
于 2018-09-11T15:52:52.200 回答
0

KeyValuePair<TKey, TValue>是一个结构体,而 C# 中的结构体是值类型,并且被提到是不可变的。原因很明显,Dictionary<TKey,TValue>应该是高性能的数据结构。使用引用类型而不是值类型会使用过多的内存开销。与字典中直接存储的值类型不同,此外,将为字典中的每个条目分配 32 位或 64 位引用。这些引用将指向入口实例的堆。整体性能将迅速下降。

Microsoft 选择 struct over class 的规则Dictionary<TKey,TValue>满足:

✔️ 如果类型的实例很小且通常短命或通常嵌入在其他对象中,请考虑定义结构而不是类。

❌ 避免定义结构,除非该类型具有以下所有特征:

  • 它在逻辑上表示单个值,类似于原始类型(int、double 等)。
  • 它的实例大小小于 16 个字节。
  • 它是不可变的。
  • 它不必经常装箱。
于 2020-03-27T08:52:25.123 回答