本机 C# .NET 方法在添加之前检查集合中是否存在项目

发布于 2024-10-04 08:43:20 字数 475 浏览 1 评论 0 原文

我发现自己经常写这篇文章。

Hashtable h = new Hashtable();
string key = "hahahahaahaha";
string value = "this value";
if (!h.Contains(key))
{
    h.Add(key, value);
}

是否有一个本机方法(可能类似于 AddIf() ??)来检查它是否存在于集合中,如果不存在,则将其添加到集合中?那么我的例子将更改为:

Hashtable h = new Hashtable();
string key = "hahahahaahaha";
string value = "this value";
h.AddIf(key, value);

这将适用于 Hastable 之外的情况。基本上任何具有 .Add 方法的集合。

编辑:更新为在添加到哈希表时添加值:)

I find myself writing this quite frequently.

Hashtable h = new Hashtable();
string key = "hahahahaahaha";
string value = "this value";
if (!h.Contains(key))
{
    h.Add(key, value);
}

Is there a native method (perhaps something like AddIf() ??) that checks to see if it exists in the collection and if it does not, adds it to the collection? So then my example would change to:

Hashtable h = new Hashtable();
string key = "hahahahaahaha";
string value = "this value";
h.AddIf(key, value);

This would apply beyond a Hastable. Basically any collection that has a .Add method.

EDIT: Updated to add a value when adding to the Hashtable :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

过去的过去 2024-10-11 08:43:20

好吧,您可能不会编写该代码,因为 Hashtable 使用键/值对,而不仅仅是键。

如果您使用 .NET 3.5 或更高版本,我建议您使用 HashSet< ;T>,然后你就可以无条件调用 Add - 返回值将指示是否实际添加。

编辑:好的,现在我们知道您正在谈论键/值对 - 没有任何内置条件添加(嗯,ConcurrentDictionary IIRC中有,但是......),但是如果如果您很乐意覆盖现有值,您可以只使用索引器:

h[key] = value;

Add 不同,如果已经有该键的条目,则不会引发异常 - 它只会覆盖它。

Well, you probably don't write that code, because Hashtable uses key/value pairs, not just keys.

If you're using .NET 3.5 or higher, I suggest you use HashSet<T>, and then you can just unconditionally call Add - the return value will indicate whether it was actually added or not.

EDIT: Okay, now we know you're talking about key/value pairs - there's nothing built-in for a conditional add (well, there is in ConcurrentDictionary IIRC, but...), but if you're happy to overwrite the existing value, you can just use the indexer:

h[key] = value;

Unlike Add, that won't throw an exception if there's already an entry for the key - it'll just overwrite it.

权谋诡计 2024-10-11 08:43:20

.NET框架中没有这样的方法。但您可以轻松编写自己的扩展方法:

public static void AddIfNotExists<T>(this ICollection<T> coll, T item) {
    if (!coll.Contains(item))
        coll.Add(item)
}

对于 IDictionary,我使用此方法(通常用于 Dictionary> 及其变体):

public static TValue AddIfNotExists<TKey, TValue>(this IDictionary<TKey, TValue> dict, TKey key)
    where TValue : new()
{
    TValue value;
    if (!dict.TryGetValue(key, out value))
    {
        value = new T();
        dict.Add(key, value);
    }
    return value;
}

There isn't such a method in the .NET framework. But you can easily write your own extension method:

public static void AddIfNotExists<T>(this ICollection<T> coll, T item) {
    if (!coll.Contains(item))
        coll.Add(item)
}

For IDictionary, I use this method (generally for Dictionary<TKey, List<TValue>> and variations):

public static TValue AddIfNotExists<TKey, TValue>(this IDictionary<TKey, TValue> dict, TKey key)
    where TValue : new()
{
    TValue value;
    if (!dict.TryGetValue(key, out value))
    {
        value = new T();
        dict.Add(key, value);
    }
    return value;
}
执着的年纪 2024-10-11 08:43:20

对于哈希表,您可以编写 myHashtable[key] = myHashtable[key] ?? newValue,其中右侧首先检查 myHashtable[key] 的计算结果是否为 null,如果没有解析为 null,否则解析为 newVale

For a hashtable you could write myHashtable[key] = myHashtable[key] ?? newValue where the right hand side would first check if myHashtable[key] evaluated to null and if not resolve to that otherwise resolve to newVale

奢欲 2024-10-11 08:43:20

您的代码没有意义,因为哈希表需要键和值。

如果您指的是 HashSet,那么如果该项已存在,则调用 Add 将不会执行任何操作。

如果您指的是 Dictionary,您可以编写 dict[key] = value,如果键不存在,则添加该键;如果键存在,则覆盖它。

Your code doesn't make sense, since a HashTable needs both a key and a value.

If you meant a HashSet<T>, calling Add will do nothing if the item is already there.

If you meant a Dictionary<TKey, TValue>, you can write dict[key] = value, which will add the key if it's not present or overwrite it if it is.

╰ゝ天使的微笑 2024-10-11 08:43:20

到目前为止还没有。但是您可以编写自己的扩展方法来将其包装在一行中。

So far it doesn't .But you could write your own extension method to wrap this in one single line.

吃兔兔 2024-10-11 08:43:20

我经常在自定义的 Dictionary/Hashtable 集合中编写类似的方法,作为
类型 FetchOrCreate(Key),而不是 void AddIf(Key)

I often write a similar method in my custom Dictionary/Hashtable collections, as a
Type FetchOrCreate(Key), not as an void AddIf(Key)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文