gpt4 book ai didi

c# - 如何根据具有相同哈希码的对象获取字典项?

转载 作者:行者123 更新时间:2023-11-30 16:52:19 24 4
gpt4 key购买 nike

考虑以下私有(private)成员:

private ConcurrentDictionary<CollectionInfo, ServiceInfo> _collectionsServicesMapping;

CollectionInfo 类覆盖并添加了一些额外的属性:

class CollectionInfo
{
public Guid InstanceId { get; set; }

public string CollectionName { get; set; }

public string WorkFlowName { get; set; }

public Guid DomainId { get; set; }

public override bool Equals(object obj)
{
return obj is CollectionInfo && (obj as CollectionInfo).InstanceId.Equals(InstanceId);
}

public override int GetHashCode()
{
return InstanceId.GetHashCode();
}
}

在我需要的上下文中,我正在通过 InstanceId 寻找 CollectionInfo:

private IRequestHandler GetServiceByInstanceId(Guid instanceId)
{
}

我看到的两个可选解决方案:

_collectionsServicesMapping.TryGetValue(new CollectionInfo() { InstanceId = instanceId }, out si)

_collectionsServicesMapping.FirstOrDefault(x => x.Key.InstanceId.Equals(instanceId));

但这迫使我要么创建一个冗余的假实例CollectionInfo,要么扫描所有字典

有没有办法以另一种更有效的方式基于具有相同哈希码的对象获取字典项?

最佳答案

Is there a way to get a dictionary item, based on an object that has the same hashcode in another more efficient way?

不幸的是没有。与 Philip Pittle 的回答相反,我认为您(以及处于类似情况的任何其他人)确实有问题。我们是我所说的过多封装的受害者,从Dictionary<TKey, TValue>开始。然后是 ConcurentDictionary<TKey, TValue> .这两个类都可以很容易地公开像

这样的方法
IEnumerable<KeyValuePair<TKey, TValue>> GetItems(int hashCode) 

bool TryGetValue(int hashCode, Func<TKey, bool> predicate, out TValue value)

但他们没有。不幸的是,在类实现之外无法模拟类似的东西。

所以您被提到的解决方法困住了。我会选择 fake instance 方法 - 至少你可以,有时没有这样的奢侈(如果类需要复杂的构造函数和强大的验证不允许假实例化)。并等待 MS 开源 BCL :-)

附言通过 Guid 创建一个不同的字典怎么样? ,为什么要保留 2 份 Guid (16 字节值类型)是否已包含在类的实例中?

关于c# - 如何根据具有相同哈希码的对象获取字典项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32699832/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com