我有一个实现接口的类,它有一个多参数构造函数和一个静态排序集合。这个类是一个基类,它有许多继承的类。
internal class SCO : IVotable
{
public SCO(SPListItem item, List<Vote> votes)
{
//Initialize Object
}
public static List<T> SortedCollection<T>(SPListItemCollection items, ListSortType sortType, List<Vote> votes) where T : IVotable
{
var returnlist = new List<T>();
Type genericType = typeof(T);
for (int i = 0; i < items.Count; i++) { returnlist.Add((T)Activator.CreateInstance(genericType, new object[] { items[i], votes })); }
switch (sortType)
{
case ListSortType.Hot:
returnlist.Sort((p1, p2) => p2.HotScore.CompareTo(p1.HotScore));
break;
case ListSortType.Top:
returnlist.Sort((p1, p2) => p2.VoteTotal.CompareTo(p1.VoteTotal));
break;
case ListSortType.Recent:
returnlist.Sort((p1, p2) => p2.CreatedDate.CompareTo(p1.CreatedDate));
break;
}
return returnlist;
}
}
这使我可以对任何子类执行以下操作:
List<ChildClass> sortedClassList = ChildClass.SortedCollection<ChildClass>(listItems, sortType, votes);
我目前对 Activator.CreateInstance 的依赖让我担心,因为这比直接使用 Emit IL 慢了大约 100 倍。我一直在阅读一些关于 Emit IL 的文章,这个解决方案似乎很棒。
但是,我似乎无法让它工作。当我尝试实例化ILGenerator gen =
时,它告诉我“无法在静态上下文中访问非静态字段‘方法’”
我的类不是静态的,我的构造函数也不是,下面显示的静态列表还没有与 Emit 交互。我该如何进行这项工作?
到目前为止的代码:
internal class SCO : IVotable
{
//Properties emittied
static ConstructorInfo ctor = typeof(SCO).GetConstructors()[1];
delegate SCO SCOCtor(SPListItem item, List<Vote> votes);
static SCOCtor SCOCtorDelegate;
DynamicMethod method = new DynamicMethod("CreateInstance", typeof (SCO),
new Type[] {typeof (SPListItem), typeof (List<Vote>)});
ILGenerator gen = method.GetILGenerator(); //Error here
//"Cannot access non-static field 'method' in static context"
private static SCO CreateInstance(SPListItem item, List<Vote> votes)
{
return SCOCtorDelegate(item, votes);
}
}
博客供参考: http ://ayende.com/blog/3167/creating-objects-perf-implications