我有以下概念模型:
public interface IFoo<out T>
{
T Data { get; }
}
public struct Foo<T> : IFoo<T>
{
public Foo(T data) : this()
{
Data = data;
}
public T Data { get; private set; }
}
public class FooService<T>
{
...
public Foo<T> Get(string id)
{
...
}
}
然后我尝试以概念上等效于此的方式使用它:
// Create and register a few FooService instances
ServiceLocator.Register(new FooService<DateTime>(), "someServiceId");
ServiceLocator.Register(new FooService<double?>(), "anotherServiceId");
// Retrieve a particular FooService instance and call the Get method
var fooService = (FooService<object>)ServiceLocator.Get("someServiceId");
var foo = fooService.Get("someFooId");
我想在 FooService 实例上使用 Get() 方法 - 无论选定的 FooService 实例返回什么类型。但是,此代码会导致以下异常:
无法将类型为"WindowsFormsApplication7.FooService'1[System.DateTime]"的对象转换为类型"WindowsFormsApplication7.FooService'1[System.Object]"。
有关如何解决此问题的任何建议将不胜感激。
你可以争辩说,为什么我首先将FooService设为通用。但是,这样做是为了在类型安全环境中确保类型安全。但是,在这种特殊情况下,FooService应在Web API控制器中使用,以服务于各种类型的Foo。它应返回一个响应,其中 Foo of T 不考虑 T 的类型。
我想你已经给出了正确的答案:
FooService<double?>
永远不能投射到FooService<object>
,并且 FooService<DateTime>
永远不能投射到FooService<object>
.
使用协方差或逆变不会改变这一点。页面 https://msdn.microsoft.com/en-us/library/dd997386.aspx 指出:Value types also do not support variance.
由于double?
和DateTime
是值类型,因此这永远行不通。
如果可能的话,你可以像这样调整你的模型:
public interface IFoo
{
object Data { get; }
}
public interface IFoo<T> : IFoo
{
new T Data { get; }
}
public class Foo<T> : IFoo<T>
{
public Foo(T data) { Data = data; }
public T Data { get; private set; }
object IFoo.Data { get { return Data; } }
}
public interface IFooService
{
IFoo Get(string id);
}
public interface IFooService<T> : IFooService
{
new IFoo<T> Get(string id);
}
public class FooService<T> : IFooService<T>
{
public IFoo<T> Get(string id) { return null; }
IFoo IFooService.Get(string id) { return Get(id); }
}
这将使您能够做到
ServiceLocator.Register(new FooService<DateTime>(), "someServiceId");
ServiceLocator.Register(new FooService<double?>(), "anotherServiceId");
// Retrieve a particular FooService instance and call the Get method
IFooService fooService = (IFooService)ServiceLocator.Get("someServiceId");
IFoo foo = fooService.Get("someFooId");
object data = foo.Data;
我做了一个实际上适用于引用类型的示例,但是 - 如@Martin所述 - 永远不适用于值类型,因为它们不支持方差。where T : class
约束确保仅接受引用类型。
public interface IFoo<out T> where T : class
{
T Data { get; }
}
public struct Foo<T> : IFoo<T> where T : class
{
public Foo(T data) : this()
{
Data = data;
}
public T Data { get; private set; }
}
public interface IFooService<out T> where T : class
{
IFoo<T> Get(string id);
}
public class FooService<T> : IFooService<T> where T : class
{
public IFoo<T> Get(string id)
{
return null;
}
}
用法:
ServiceLocator.Register(new FooService<Bar>(), "ServiceId");
// OK because Bar is a reference type
var fooService = (IFooService<object>)ServiceLocator.Get("ServiceId");
var foo = fooService.Get("FooId");