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

前端之家收集整理的这篇文章主要介绍了c# – 无法将类型’int’隐式转换为’System.Collections.Generic.List’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码
  1. static void Main(string[] args)
  2. {
  3. List<Stock> ticker = new List<Stock>();
  4. ticker.Add(new Stock("msft"));
  5. ticker.Add(new Stock("acw"));
  6. ticker.Add(new Stock("gm"));
  7.  
  8. ticker = ticker.OrderBy(s => s.Name).ToList();
  9.  
  10. foreach (Stock s in ticker)
  11. {
  12. Console.WriteLine(s.Name);
  13. }
  14.  
  15. Console.WriteLine("\n");
  16. ticker = ticker.RemoveAll(s => s.TickerSymbol == "gm");
  17.  
  18. foreach (Stock s in ticker)
  19. {
  20. Console.WriteLine(s.Name);
  21. }
  22. }

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

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

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

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

解决方法

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

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

  1. // This will remove all the stocks you want.
  2. ticker.RemoveAll(s => s.TickerSymbol == "gm");
  3.  
  4. foreach (Stock s in ticker)
  5. {
  6. Console.WriteLine(s.Name);
  7. }

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

方法List< T> .RemoveAll()

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

它的签名如下:

  1. 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.

猜你在找的C#相关文章