NET问答: 为什么 IEnumerable<string; 不能被初始化?
Posted dotNET跨平台
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NET问答: 为什么 IEnumerable<string; 不能被初始化?相关的知识,希望对你有一定的参考价值。
咨询区
markzzz:
我有下面的一个对象。
IEnumerable<string> m_oEnum = null;
现在我想初始化它,然后我做了下面的尝试。
IEnumerable<string> m_oEnum = new IEnumerable<string>() { "1", "2", "3"};
很遗憾,编译器报错了。。。
Cannot create an instance of the abstract type or interface 'IEnumerable<string>'
请问这种情况我该怎么合理的处置呢?
回答区
Community:
微软早就考虑到了这种情况,你可以使用微软自己提供的Enumerable.Empty()
扩展方法即可,签名如下:
public static class Enumerable
{
public static IEnumerable<TResult> Empty<TResult>()
{
return EmptyEnumerable<TResult>.Instance;
}
}
接下来就可以这么用了。
IEnumerable<string> m_oEnum = Enumerable.Empty<string>();
如果不想用底层框架现成的,可以自己用一个实现类初始化。
IEnumerable<string> m_oEnum = new string[]{};
ChrisF:
IEnumerable
是一个接口,所以你无法直接对它进行初始化,不过你可以使用实现它接口方法的实现类来初始化,比如: List
。
IEnumerable<string> m_oEnum = new List<string>() { "1", "2", "3" };
然后你就可以把 m_oEnum
传参到所有接收 IEnumerable<string>
的地方啦。
点评区
这是一个很基础的问题,很多初学者在混入了泛型参数之后就搞蒙了,而现实开发中也常会遇到这种场景,学习了。
以上是关于NET问答: 为什么 IEnumerable<string; 不能被初始化?的主要内容,如果未能解决你的问题,请参考以下文章
NET问答: 如何在 dynamic 集合上使用 Linq ?
ProtoBuf-net 序列化 IEnumerable<T>
使用 IEnumerable<T> 在 .net core 中添加对象的实例