具有“任何泛型类型”定义的C#泛型“ where约束”?
让我举个例子:
- 我有一些通用的类/接口定义:
interface IGenericCar< T > {...}
- 我还有另一个要与上面的类相关的类/接口,例如:
interface IGarrage< TCar > : where TCar: IGenericCar< (**any type here**) >
{...}
基本上,我希望我的通用IGarrage依赖IGenericCar
,无论它是IGenericCar<int>
还是IGenericCar<System.Color>
,因为我对该类型没有任何依赖。
回答:
通常有两种方法可以实现此目的。
:添加另一个参数来IGarrage
表示T
应该传递给IGenericCar<T>
约束的参数:
interface IGarrage<TCar,TOther> where TCar : IGenericCar<TOther> { ... }
:定义一个基本接口,IGenericCar<T>
该接口不是通用接口,并且针对该接口进行约束
interface IGenericCar { ... }interface IGenericCar<T> : IGenericCar { ... }
interface IGarrage<TCar> where TCar : IGenericCar { ... }
以上是 具有“任何泛型类型”定义的C#泛型“ where约束”? 的全部内容, 来源链接: utcz.com/qa/426198.html