1

我想创建实现如下接口的简单工厂类:

IFactory 
{
   TEntity CreateEmpty<TEntity>(); 
}

在这个方法中,我想返回一个 TEntity 类型(泛型)的实例。例子:

TestClass test = new Factory().CreateEmpty<TestClass>(); 

可能吗?界面是否正确?

我试过这样的事情:

private TEntity CreateEmpty<TEntity>() {
   var type = typeof(TEntity);
   if(type.Name =="TestClass") {
      return new TestClass();
   }
   else {
     ...
   }
}

但它不编译。

4

3 回答 3

6

您需要new()在泛型类型参数上指定约束

public TEntity CreateEmpty<TEntity>() 
    where TEntity : new()
{
    return new TEntity();
}

新约束规定所使用的具体类型必须具有公共默认构造函数,即没有参数的构造函数。

public TestClass
{
    public TestClass ()
    {
    }

    ...
}

如果您根本不指定任何构造函数,则默认情况下该类将具有公共默认构造函数。

您不能在new()约束中声明参数。如果需要传递参数,则必须为此目的声明专用方法,例如通过定义适当的接口

public interface IInitializeWithInt
{
     void Initialize(int i);
}

public TestClass : IInitializeWithInt
{
     private int _i;

     public void Initialize(int i)
     {
         _i = i;
     }

     ...
}

在您的工厂

public TEntity CreateEmpty<TEntity>() 
    where TEntity : IInitializeWithInt, new()
{
    TEntity obj = new TEntity();
    obj.Initialize(1);
    return obj;
}
于 2012-05-05T12:40:28.773 回答
2
interface IFactory<TEntity> where T : new()
{
   TEntity CreateEmpty<TEntity>(); 
}
于 2012-05-05T12:41:10.313 回答
2

此方法将帮助您按顺序传递参数,它们在构造函数中:

private T CreateInstance<T>(params object[] parameters)
{
    var type = typeof(T);

    return (T)Activator.CreateInstance(type, parameters);
}
于 2012-05-05T12:43:49.787 回答