- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
((IEnumerable)source).OfType<T>()
之间有什么区别?和 source as IEnumerable<T>
对我来说,它们看起来很相似,但实际上并非如此!
source
类型为 IEnumerable<T>
, 但它被装箱为 object
.
编辑
这是一些代码:
public class PagedList<T> : List<T>, IPagedList
{
public PagedList(object source, int index, int pageSize, int totalCount)
{
if (source == null)
throw new ArgumentNullException("The source is null!");
// as IEnumerable<T> gives me only null
IEnumerable<T> list = ((IEnumerable)source).OfType<T>();
if (list == null)
throw new ArgumentException(String.Format("The source is not of type {0}, the type is {1}", typeof(T).Name, source.GetType().Name));
PagerInfo = new PagerInfo
{
TotalCount = totalCount,
PageSize = pageSize,
PageIndex = index,
TotalPages = totalCount / pageSize
};
if (PagerInfo.TotalCount % pageSize > 0)
PagerInfo.TotalPages++;
AddRange(list);
}
public PagerInfo PagerInfo { get; set; }
}
在另一个地方我创建了 PagedList 的一个实例
public static object MapToPagedList<TSource, TDestination>(TSource model, int page, int pageSize, int totalCount) where TSource : IEnumerable
{
var viewModelDestinationType = typeof(TDestination);
var viewModelDestinationGenericType = viewModelDestinationType.GetGenericArguments().FirstOrDefault();
var mappedList = MapAndCreateSubList(model, viewModelDestinationGenericType);
Type listT = typeof(PagedList<>).MakeGenericType(new[] { viewModelDestinationGenericType });
object list = Activator.CreateInstance(listT, new[] { (object) mappedList, page, pageSize, totalCount });
return list;
}
如果有人能告诉我为什么我必须将 mappedList 转换为对象,我将非常感激 :)
这里是 MapAndCreateSubList 方法和 Map 委托(delegate):
private static List<object> MapAndCreateSubList(IEnumerable model, Type destinationType)
{
return (from object obj in model select Map(obj, obj.GetType(), destinationType)).ToList();
}
public static Func<object, Type, Type, object> Map = (a, b, c) =>
{
throw new InvalidOperationException(
"The Mapping function must be set on the AutoMapperResult class");
};
最佳答案
What is the difference between
((IEnumerable)source).OfType<T>()
andsource as IEnumerable<T>
For me they look similar, but they are not!
你是对的。它们非常不同。
前者的意思是“获取源序列并生成一个全新的、不同的序列,该序列由先前序列中给定类型的所有元素组成”。
后者的意思是“如果源序列的运行时类型是给定的类型,则给我一个对该序列的引用,否则给我 null”。
我举个例子。假设你有:
IEnumerable<Animal> animals = new Animal[] { giraffe, tiger };
IEnumerable<Tiger> tigers = animals.OfType<Tiger>();
这会给你一个新的、不同的序列,其中包含一只老虎。
IEnumerable<Mammal> mammals = animals as IEnumerable<Mammal>;
那会给你 null。动物不是哺乳动物的序列,尽管它是碰巧只是哺乳动物的动物序列。动物的实际运行时类型是“动物数组”,动物数组与哺乳动物序列不类型兼容。为什么不?好吧,假设转换成功了,然后你说:
animals[0] = snake;
Mammal mammal = mammals.First();
嘿,你只是将一条蛇放入一个只能包含哺乳动物的变量中!我们不允许这样做,因此转换不起作用。
在 C# 4 中,您可以走另一条路。你可以这样做:
IEnumerable<Object> objects = animals as IEnumerable<Object>;
因为一系列动物可以被视为一系列对象。你把蛇放在那里,蛇仍然是一个对象。不过这只适用于 C# 4。 (并且它仅在两种类型都是引用类型时才有效。您不能将 int 数组转换为对象序列。)
但要理解的关键是 OfType<T>
方法返回一个全新的序列,“as”运算符执行运行时类型测试。这些是完全不同的事情。
这是另一种看待它的方式。
tigers = animals.OfType<Tiger>()
和
tigers = animals.Where(x=>x is Tiger).Select(x=>(Tiger)x);
也就是说,通过对动物的每个成员进行测试,看它是否是老虎,从而产生一个新的序列。如果是,投它。如果不是,请丢弃它。
mammals = animals as IEnumerable<Mammal>
另一方面,与
if (animals is IEnumerable<Mammal>)
mammals = (IEnumerable<Mammal>) animals;
else
mammals = null;
有道理吗?
关于c# - ((IEnumerable)source).OfType<T>() 和 source as IEnumerable<T> 之间有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3739319/
任何人都可以向我解释 IEnumerable 和 IEnumerator 之间的区别是什么, 以及如何使用它们? 谢谢!!! 最佳答案 通常,一个 IEnumerable是可以枚举的对象,例如列表或数
function TSomething.Concat(const E: IEnumerable>): IEnumerable; begin Result := TConcatIterator.Cr
我正试图找到解决这个问题的办法: 给定一个 IEnumerable> 我需要一个返回输入的方法/算法,但是如果多个 IEnumerable 具有相同的元素,则每个巧合/组只返回一个。 例如 I
我有一个有趣的问题:给定一个 IEnumerable , 是否有可能产生 IEnumerable> 的序列一次将相同的相邻字符串分组? 让我解释一下。 1。基本说明示例: 考虑以下 IEnumerab
我有课 public class Test { public void M1(IEnumerable> p) { } public void M2(IEnumerable)> p) {
我尝试解决下一个练习: 输入:整数列表 count >= 1;一些正整数 k 输出:此整数的所有可能元组,长度为 k ; 例如 输入: {1, 2}; k = 4 输出: { {1, 1, 1, 1
抱歉奇怪的标题。我想要实现的目标很简单: IEnumerable> listoflist; IEnumerable combined = listoflist.CombineStuff(); 例子:
公共(public)类项目 { ... public class Order { public List Items ... } public class Customer {
我有一个 IEnumerable>我想转换为单一维度集合的集合。是否可以使用通用扩展方法来实现这一点?现在我正在这样做以实现它。 List filteredCombinations = new Lis
我有一个 IEnumerable> CustomObject在哪里有一个 x (用作键(在本例中为 1 、 2 、 3 ))和 y值(value)。一些假数据: { { {1, 2}, {2, 4
我需要做的是选择嵌套元素列表,这是我的查询 returns IEnumerable>这是我的 linq 表达式: from a in (questions.Select(x => x.AnswerLi
如何使用 LINQ(或其他方式)将 IEnumerables 的 IEnumerable 拆分为一个平面 IEnumerable? 最佳答案 enumerable.SelectMany(x => x)
例如: public interface IEnumerable { IEnumerator GetEnumerator(); } //This interface allows the c
我对 Reflection.Emit 有疑问。我想要动态创建的类,它具有 ICollection 的简单实现。我定义的所有方法都很好,而不是接下来的两个: public IEnumerator Get
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Why was IEnumerable made covariant in C# 4? 我正在查看 MSDN
IEnumerator.MoveNext() 的实现是否预计会相对较快?或者如果“移动到下一项” 包括磁盘 IO、Web 请求或其他可能长时间运行的操作是否可以? 例如,我正在处理一个处理文档的项目,
以下代码创建了 List 的中间实例并在 yield 返回之前将值附加到它。有没有一种好的方法可以避免创建实例并直接 yield 返回单元格值? IEnumerable> GetStrValues()
我有两个 IEnumerable 对象,我想验证其中一个是否包含另一个的所有元素。 我正在使用 obj1.Intersect(obj2).Any() 但交集没有像我预期的那样工作。即使 obj2 中只
我正在尝试这个 MSDN page 上的例子.我试图更改 GetEnumerator 方法。我知道那似乎有些不对劲,但它符合要求然后就不会运行。错误是枚举器尚未启动,应该调用 MoveNext,但 它
我写过关于自定义 IEnumerator 的文章。从中生成 IEnumerable 的最简单方法是什么?理想的解决方案(一行代码)是是否有一些用于该目的的类。还是我必须自己创建? 最佳答案 不幸的是,
我是一名优秀的程序员,十分优秀!