6

我对c#很陌生,请对我温柔,我已经在网上搜索了几个小时没有成功,我想从我的用户定义的类中删除一个元素。我该怎么做?

下面是代码片段。

public class Level2
{
    public double price { get; set; }
    public long volume { get; set; }

    public Level2(double price, long volume)
    {
        this.price = price;
        this.volume = volume;
    }
}

static void Main()
{

    List<Level2> bid = new List<Level2>();

    ask.Add(new Level2(200, 500));
    ask.Add(new Level2(300, 400));
    ask.Add(new Level2(300, 600));


    // how to remove this element ???
    ask.Remove(300, 400);       //doesn't work

 }

我想我需要实现某种类型的 IEnumerable,但是语法看起来如何?有人可以给我一个工作片段吗?多谢

4

4 回答 4

10

这将从列表中删除所有Level2对象Price = 300 and Volume = 400

ask.RemoveAll(a => a.price == 300 && a.volume == 400);
于 2012-06-03T12:21:56.737 回答
3

这是我的做法: overrideEqualsGetHashCodeon Level2,这样您就可以List<T>.Remove在不需要对对象的原始引用的情况下使用。

public class Level2
{
    public double price { get; set; }
    public long volume { get; set; }

    public Level2(double price, long volume)
    {
        this.price = price;
        this.volume = volume;
    }

    public override bool Equals(object obj)
    {
        var other = obj as Level2;
        if (other == null)
            return false;
        return other.price == this.price && other.volume == this.volume;
    }

    public override int GetHashCode()
    {
        return price.GetHashCode() ^ volume.GetHashCode();
    }
}

static void Main(string[] args)
{
    List<Level2> ask = new List<Level2>();

    ask.Add(new Level2(200, 500));
    ask.Add(new Level2(300, 400));
    ask.Add(new Level2(300, 600));

    ask.Remove(new Level2(300, 400));
}

这是另一种方法,它使用对象的身份而不是对象内部的值:

static void Main(string[] args)
{
    List<Level2> ask = new List<Level2>();

    ask.Add(new Level2(200, 500));
    var level = new Level2(300, 400);
    ask.Add(level);
    ask.Add(new Level2(300, 600));

    ask.Remove(level);
}

根据您的情况,其中一个或其他答案之一可能是最好的方法。

于 2012-06-03T12:19:22.007 回答
1

请记住,您正在将实例化添加objects到键入的 List bid中,因此您需要在列表中搜索对象以删除与特定条件匹配的对象。请注意,您Level2的列表中可以有多个(不同)实例price==300volume==400

一个小的代码示例应该可以澄清事情。

public class Level2
{
    public double price { get; set; }
    public long volume { get; set; }
    public Level2(double price, long volume)
    {
        this.price = price;
        this.volume = volume;
    }
    public override string ToString()
    {
        return String.Format("Level 2 object with price: {0} and volume: {1}", 
            this.price, this.volume);
    }
}

public static void Main()
{
    List<Level2> bid = new List<Level2>();
    bid.Add(new Level2(200, 500));
    bid.Add(new Level2(300, 400));
    bid.Add(new Level2(300, 600));
    bid.Add(new Level2(300, 400)); // second item with these quantities

    List<Level2> toRemove = 
        bid.Where(x => x.price == 300 && x.volume == 400).ToList<Level2>();

    foreach (Level2 item in toRemove)
    {
        bid.Remove(item);
        Console.WriteLine("removing " + item.ToString());
    }
}
于 2012-06-03T12:06:26.793 回答
0

您需要首先检索要删除的元素:

Level2 element = ask.FirstOrDefault(l => l.price == 300 && l.volume == 400);
if (element != null)
    ask.Remove(element);
于 2012-06-03T12:02:50.693 回答