让我举个例子:

  • 我有一些通用的类/接口(interface)定义:
    interface IGenericCar< T > {...}
  • 我还有另一个要与上述类关联的类/接口(interface),例如:
    interface IGarrage< TCar > : where TCar: IGenericCar< (**any type here**) > {...}

  • 基本上,我希望我的通用IGarrage依赖于IGenericCar,而不管它是IGenericCar<int>还是IGenericCar<System.Color>,因为我对此类型没有任何依赖性。

    最佳答案

    通常有两种方法可以实现此目的。

    选项1 :在IGarrage中添加另一个参数,该参数表示应传递到T约束中的IGenericCar<T>:

    interface IGarrage<TCar,TOther> where TCar : IGenericCar<TOther> { ... }
    

    选项2 :为IGenericCar<T>定义一个基本接口(interface),该接口(interface)不是通用的,并且受该接口(interface)的约束
    interface IGenericCar { ... }
    interface IGenericCar<T> : IGenericCar { ... }
    interface IGarrage<TCar> where TCar : IGenericCar { ... }
    

    10-06 07:48