c# – 无法将类型’int’隐式转换为’System.Collections.Generic.List’

前端之家收集整理的这篇文章主要介绍了c# – 无法将类型’int’隐式转换为’System.Collections.Generic.List’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码
static void Main(string[] args)
    { 
        List<Stock> ticker = new List<Stock>();
        ticker.Add(new Stock("msft"));
        ticker.Add(new Stock("acw"));
        ticker.Add(new Stock("gm"));

        ticker = ticker.OrderBy(s => s.Name).ToList();

        foreach (Stock s in ticker)
        {
            Console.WriteLine(s.Name);
        }

        Console.WriteLine("\n");
        ticker = ticker.RemoveAll(s => s.TickerSymbol == "gm");

        foreach (Stock s in ticker)
        {
            Console.WriteLine(s.Name);
        }
    }

Stock是一个具有字符串属性TickerSymbol和Name的对象.它还具有双重属性Price,ChangeDollars和ChangePercent.

我写的第二个LINQ语句是在消息中抛出错误,“不能将类型’int’隐式转换为’System.Collections.Generic.List’”.我很困惑’int’类型的来源以及如何修复此错误,因为我在程序中的任何地方都不使用任何int值.

我对LINQ也很新,这是我第一次使用它.这个错误很可能是LINQ的一些复杂性的结果,我不知道.

任何人都知道为什么会发生这种错误以及如何解决它?

解决方法

你得到的错误是合理的,因为RemoveAll返回已删除股票的数量.这是一个整数.然后尝试将此赋值给名为ticker的变量,该变量包含Stock类型的对象列表.

你可能想要的是删除他们的TickerSymbol是gm的所有股票,然后将他们留在股票代码中的股票写入控制台.为此,您可以尝试这样做:

// This will remove all the stocks you want.
ticker.RemoveAll(s => s.TickerSymbol == "gm");

foreach (Stock s in ticker)
{
    Console.WriteLine(s.Name);
}

此外,对于记录,如MSDN所述:

方法List< T> .RemoveAll()

Removes all the elements that match the conditions defined by the
specified predicate.

它的签名如下:

public int RemoveAll(Predicate<T> match)

谓词< T>是一个方法的委托,如果传递给它的对象与委托中定义的条件匹配,则返回true.当前List的元素分别传递给Predicate委托,匹配条件的元素将从List中删除.

This method performs a linear search; therefore,this method is an O(n) operation,where n is List’s Count property.

原文链接:https://www.f2er.com/csharp/100617.html

猜你在找的C#相关文章