我想创建一个工厂方法的集合,可以实例化各种对象,其类型只在运行时才知道.我可以轻松地为此创建一个委托:
delegate T InstanceCreator<T>()
但这给出了编译错误:“无法解析符号T”
Dictionary<string, InstanceCreator<T>>
所以代替这个我只是声明
Dictionary<string, Delegate>
我尝试在Add方法中弥补这种类型特异性的缺乏,但遇到了同样的问题.
public void AddFactory(string typeName, InstanceCreator<T> factory)
有没有更好的方法来确保只有InstanceCreator< T>代表们被添加到我的收藏中?
最佳答案 您可以使AddFactory成为通用方法:
public void AddFactory<T>(string typeName, InstanceCreator<T> factory)
这将限制它仅允许InstanceCreator< T>要添加的元素.