为这种情况寻找合适的数据结构(最好是字典和列表)

发布于 2024-12-11 19:54:27 字数 509 浏览 0 评论 0 原文

在方法调用中,对象被传递给它。

从这个对象中我可以得到两件事:一个 ItemData 属性和一个 Row 属性,例如:

oPTL.ItemData, oPTL.Row

我想要一个数据结构,每次调用此方法时它都可以更新此数据结构,例如一次 oPTL.ItemData"Spread1"oPTL.Row2所以我们应该能够保存它Spread1 的值为 2...例如,下一次调用我们应该能够保存“Spread3”的值为 3..下一次调用“Spread1”的值为 4 等...

所以它就像一个 Dictionary> 但我仍然在代码中以这种方式声明和使用它时遇到问题,任何代码示例都可以帮助我 和?

In a method call an object is getting passed it.

From this object I can get two things: an ItemData propery and a Row property so for example:

oPTL.ItemData, oPTL.Row

I want to have a data structure that each time this method is called it can update this data structure so for example one time oPTL.ItemData is "Spread1" and oPTL.Row is 2 so we should be able to save that Spread1 has value 2...next call for example we should be able to save "Spread3" has value 3..next call "Spread1" has ALSO value 4 , etc...

So it is like a Dictionary<String,<List>> but still I have problem with declaring and using it this way in the code, any code sample you can help me with?

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

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

发布评论

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

评论(2

陌路黄昏 2024-12-18 19:54:27

您可以使用值为列表的字典:

IDictionary<string, List<int>> rows = new Dictionary<string, List<int>>();

要填充它,您可以使用此扩展方法:

public static class DictionaryDefaultExtension
{
    public static TValue GetOrDefault<TKey, TValue>(
        this IDictionary<TKey, TValue> dictionary,
        TKey key,
        Func<TValue> defaultValue)
    {
        TValue result;
        if (dictionary.TryGetValue(key, out result))
        {
            return result;
        }
        else
        {
            TValue value = defaultValue();
            dictionary[key] = value;
            return value;
        }
    }
} 

像这样使用:

d.GetOrDefault(oPTL.ItemData, () => new List<int>()).Add(oPTL.Row);

You can use a dictionary where the values are Lists:

IDictionary<string, List<int>> rows = new Dictionary<string, List<int>>();

To populate it you can use this extension method:

public static class DictionaryDefaultExtension
{
    public static TValue GetOrDefault<TKey, TValue>(
        this IDictionary<TKey, TValue> dictionary,
        TKey key,
        Func<TValue> defaultValue)
    {
        TValue result;
        if (dictionary.TryGetValue(key, out result))
        {
            return result;
        }
        else
        {
            TValue value = defaultValue();
            dictionary[key] = value;
            return value;
        }
    }
} 

Use like this:

d.GetOrDefault(oPTL.ItemData, () => new List<int>()).Add(oPTL.Row);
再浓的妆也掩不了殇 2024-12-18 19:54:27

您要查找的是 Dictionary> ; - 假设您的 .ItemData.Row 属性实际上是 stringint 分别。

当您读取具有“Spread1”值的项目时,首先通过调用 .ContainsKey(string) 方法检查字典中是否已存在该键。如果是这样,您将添加新的 Row 值 - 如果没有,您将使用全新列表创建新键,如下例所示:

var myItems = new Dictionary<string, List<int>>();
// ...
if (myItems.ContainsKey(newItem.ItemData))
{
    // myItems[newItem.ItemData] actually contains List<int> we created at some
    // point in the other part of if-else. 
    // The .Add method we call here belongs to List
    List<int> itemValues = myItems[newItem.ItemData];
    itemValues.Add(newItem.Row);
}
else
{
    myItems.Add(newItem.ItemData, new List<int> { newItem.Row });
}

编辑以使用两个 添加说明。添加方法。

What you're looking for is Dictionary<string, List<int>> - assuming your .ItemData and .Row properties are in fact string and int respectively.

When you read item with "Spread1" value, you first check whether such key already exists in dictionary by calling .ContainsKey(string) method. If so, you add new Row value - if not, you create new key with brand new list, like in example below:

var myItems = new Dictionary<string, List<int>>();
// ...
if (myItems.ContainsKey(newItem.ItemData))
{
    // myItems[newItem.ItemData] actually contains List<int> we created at some
    // point in the other part of if-else. 
    // The .Add method we call here belongs to List
    List<int> itemValues = myItems[newItem.ItemData];
    itemValues.Add(newItem.Row);
}
else
{
    myItems.Add(newItem.ItemData, new List<int> { newItem.Row });
}

Edited to add clarification with two .Add methods.

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