当您有如下代码时:
static T GenericConstruct<T>() where T : new()
{
return new T();
}
C# 编译器坚持发出对 Activator.CreateInstance 的调用,这比本机构造函数慢得多。
我有以下解决方法:
public static class ParameterlessConstructor<T>
where T : new()
{
public static T Create()
{
return _func();
}
private static Func<T> CreateFunc()
{
return Expression.Lambda<Func<T>>( Expression.New( typeof( T ) ) ).Compile();
}
private static Func<T> _func = CreateFunc();
}
// Example:
// Foo foo = ParameterlessConstructor<Foo>.Create();
但对我来说,为什么需要这种解决方法是没有意义的。