如何在 C# 中的通用列表中搜索特定值?

发布于 2024-10-19 17:49:43 字数 362 浏览 1 评论 0原文

class MyGenericClass<T> where T : ICompareable
{
  T[] data;

  public AddData(T[] values)
  {
     data = values;
  }
}

在我的 mainForm 中,我创建了 3 个随机数,并将它们添加为值:1 3 3,结果是:

T[] data :  [0]1 
            [1]3 
            [2]3

我希望能够搜索特定值并获得该值出现的次数存在于数组中返回给我。

我如何在 C# 中做到这一点?

class MyGenericClass<T> where T : ICompareable
{
  T[] data;

  public AddData(T[] values)
  {
     data = values;
  }
}

In my mainForm, I create 3 random numbers, and add them as values: 1 3 3, resulting in:

T[] data :  [0]1 
            [1]3 
            [2]3

I want to be able to search for a specific value and have the number of times that value is present in the array returned to me.

How do I do that in C#?

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

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

发布评论

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

评论(3

不可一世的女人 2024-10-26 17:49:43
return data.Count(t => t.CompareTo(valueToSearchFor) == 0);
return data.Count(t => t.CompareTo(valueToSearchFor) == 0);
说谎友 2024-10-26 17:49:43

这应该适合你:

   public class MyGenericClass<T> where T : IComparable 
   {
    T[] Data;

    public void AddData(T[] values) 
    {
        Data = values;

        var list = Data.ToList();
        object compareWith = new object();
        compareWith = 3;


        int count = list.Where(a=>a.CompareTo(compareWith) == 0).Count();

    }
  }

This should work for you:

   public class MyGenericClass<T> where T : IComparable 
   {
    T[] Data;

    public void AddData(T[] values) 
    {
        Data = values;

        var list = Data.ToList();
        object compareWith = new object();
        compareWith = 3;


        int count = list.Where(a=>a.CompareTo(compareWith) == 0).Count();

    }
  }
阳光下的泡沫是彩色的 2024-10-26 17:49:43

这可以很容易地完成,因为您的类型参数实现了 IComparable。你所需要的就是这个:

internal class MyGenericClass<T> where T : IComparable
{
    private T[] data;

    public void AddData(T[] values)
    {
        data = values;
    }
    public int FindValue<T>(T value)
    {
        return data.Count(v => v.CompareTo(value) == 0);
    }
}

并且调用会是这样的:

var myClass = new MyGenericClass<int>();
myClass.AddData(new[] {1,2,3,1});
var count = myClass.FindValue(1);

这应该有效(对我有用;))

希望这有帮助:)

this can be easily done since you have your type parameter implement IComparable. all you need is this:

internal class MyGenericClass<T> where T : IComparable
{
    private T[] data;

    public void AddData(T[] values)
    {
        data = values;
    }
    public int FindValue<T>(T value)
    {
        return data.Count(v => v.CompareTo(value) == 0);
    }
}

and the call would be something like:

var myClass = new MyGenericClass<int>();
myClass.AddData(new[] {1,2,3,1});
var count = myClass.FindValue(1);

and that should work (worked for me ;) )

Hope this helps :)

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