9

我不知道如何解决通用接口的问题。

通用接口代表对象的工厂:

interface IFactory<T>
{
    // get created object
    T Get();    
}

接口代表计算机工厂(计算机类)指定通用工厂:

interface IComputerFactory<T> : IFactory<T> where T : Computer
{
    // get created computer
    new Computer Get();
}

通用接口代表对象的特殊工厂,可克隆(实现接口 System.ICloneable):

interface ISpecialFactory<T> where T : ICloneable, IFactory<T>
{
    // get created object
    T Get();
}

Class 代表计算机(Computer 类)和可克隆对象的工厂:

class MyFactory<T> : IComputerFactory<Computer>, ISpecialFactory<T>
{

}

我在 MyFactory 类中收到编译器错误消息:

The type 'T' cannot be used as type parameter 'T' in the generic type or method 'exer.ISpecialFactory<T>'. There is no boxing conversion or type parameter conversion from 'T' to 'exer.IFactory<T>'.   

The type 'T' cannot be used as type parameter 'T' in the generic type or method 'exer.ISpecialFactory<T>'. There is no boxing conversion or type parameter conversion from 'T' to 'System.ICloneable'.  
4

3 回答 3

11

不确定这是否是一个错字,但应该这样:

interface ISpecialFactory<T>
        where T : ICloneable, IFactory<T>

真的是

interface ISpecialFactory<T> : IFactory<T>
        where T : ICloneable

真的,我认为这可能是你想要做的:

public class Computer : ICloneable
{ 
    public object Clone(){ return new Computer(); }
}

public interface IFactory<T>
{
    T Get();    
}

public interface IComputerFactory : IFactory<Computer>
{
    Computer Get();
}

public interface ISpecialFactory<T>: IFactory<T>
    where T : ICloneable
{
    T Get();
}

public class MyFactory : IComputerFactory, ISpecialFactory<Computer>
{
    public Computer Get()
    {
        return new Computer();
    }
}

现场示例:http ://rextester.com/ENLPO67010

于 2013-03-22T11:19:42.240 回答
4

我猜你的定义ISpecialFactory<T>是不正确的。将其更改为:

interface ISpecialFactory<T> : IFactory<T>
    where T : ICloneable
{
    // get created object
    T Get();
}

您可能不希望T实现该类型IFactory<T>

于 2013-03-22T11:22:20.483 回答
2

试试这个代码块:

class MyFactory<T> : IComputerFactory<Computer>, ISpecialFactory<T>
    where T: ICloneable, IFactory<T>
    {

    }
于 2013-03-22T11:20:40.450 回答