为什么Ienumerable可以而List>不可以?
List实现了IEnumerable接口,但是反过来,IEnumerable不一定是List调用前可以用 ToList() 转换下,就保证可以了。
他们继承的接口不一样,需要转换一下