1

我有一个基类,它有一个嵌入式列表,所有子类都可以使用它来返回一个排序的集合。

我一直在使用Activator.CreateInstance(),但与简单的 new() 函数相比,这非常慢。

我找到了一种使用 Emit IL 几乎与 new() 一样快的方法,但如果我的课程不是公开的,我会收到MethodAccessException错误消息。这似乎很常见。

有没有解决的办法?

在此处生成类的代码: http ://codeblocks.codeplex.com/wikipage?title=FasterActivator%20Sample

此处与上述代码一起使用的代码:

public static List<T> SortedCollection<T>(SPListItemCollection items, ListSortType sortType, List<Vote> votes) where T : IVotable
{
    var returnlist = new List<T>();  
    var functionCreator = FastActivator.GenerateFunc<Func<SPListItem, List<Vote>, T>>();
    for (int i = 0; i < items.Count; i++) { returnlist.Add(functionCreator(items[i], votes)); }

    //Old code here
    //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;
    }

    //Usage
    //Post : BaseClass which has above method
    return Post.SortedCollection<Post>(listItems,sortType,votes);
4

1 回答 1

5

您可以使用DynamicMethod Constructor (String, Type, Type[], Type)方法来生成与您想要访问的成员的类关联的方法。

生成的方法将完全访问您与之关联的类型中的所有成员,以及该类在其模块中可以访问的所有内部方法和成员。

于 2012-08-27T21:27:44.207 回答