我试图在我的程序里做一个普通的例行程序, 来为我对物体进行即时处理。 真正负责呼叫新对象( ) 的例行程序位于一个工厂的不同组装中, 必须即时处理 。
namespace ExternalLib
{
class Object1Factory
{
public Object1 getObject1()
//...
}
class Object2Factory
// Same implementation as Object1Factory
}
我试图提供我申请的例行程序 允许我调用合适的例行程序 为我"更新"对象
namespace MyApp
{
class Program
{
static void Main()
//...
static Object getNewObject(string typeName)
{
//This is where I have problems
}
}
}
我既可以访问外部图书馆的源代码,也可以访问我的程序,尽管整个建筑的重写费用太高。
What I ve tried:
My initial idea was to use custom attributes on the factory and/or factory routine and use reflection to grab the method, then call the method. I was originally using the signature private static T getNew<T>()
and attempting to use a switch statement on the type parameter, but realised getNewObject(string typeName)
would be easier. Factories have the same constructor signatures, but have no inheritance link.