English 中文(简体)
我该如何配对一种类型 在另一个组装中的工厂常规?
原标题:How do I pair a type to a factory routine in another assembly?

我试图在我的程序里做一个普通的例行程序, 来为我对物体进行即时处理。 真正负责呼叫新对象( ) 的例行程序位于一个工厂的不同组装中, 必须即时处理 。

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.

:创建对象的常规是在另一个组装中的工厂中,我如何自动调用这些常规来获取基于类型的对象?

最佳回答

如果你想继续沿着这条路走下去 - 你能把所有的工厂方法 都放进一个工厂类中吗?

Type t = typeof(OtherAssembly.ObjectFactory);

MethodInfo m = t.GetMethods().Where(a => a.ReturnType.Name == typeName).FirstOrDefault();

return m.Invoke(null, new object[] { /* PARAMETERS */ });


" 强力 " EDIT

(将马丁的想法放在下面,并依靠工厂的所有分类名称为“[音 脚本”)

(工厂类也采用非静态方法)

Type t = Type.GetType(String.Format("OtherAssembly.{0}Factory", typeName));

var myFactory = Activator.CreateInstance( t );

MethodInfo m = t.GetMethods().Where(a => a.ReturnType.Name == typeName).FirstOrDefault();

return m.Invoke(myFactory, new object[] { /* PARAMETERS */ });
问题回答

也许我错过了这个问题中的东西, 但有什么错 只是使用这个:

static Object getNewObject(string typeName)
{
    var type = Type.GetType(typeName);
    return Activator.CreateInstance(type);      
}

可能有些字符串操作和反射, 如果类型名称为“ 对象1 ”, 您想要获得对象1 Factory, 然后使用反射来在工厂上引用 获得Object1 () 的方法

如果您能够以“ Myname Space. object1, object1, object1 Assembly” 的字型通过Name, 它会从相关组装上装入它 。

纯粹是为了回应你尝试过的 如果你把签名更改为:

static T GetNew<T>() where T : new()
{
    // Then you can do this:
    return new T();
}

它给公共无参数构造器设置了通用限制, 限制类型为 < code> T 。 但是, 这毫无意义, 因为调用代码会看起来是这样的 :

var obj = GetNew<MyClass>();

虽然它通常只是看起来是这样的:

var obj = new MyClass();

因此,我不愿把它当作一种解决办法,但它本来会奏效,而且会否定转换说明的必要性。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签