5

这适用于 C#? 传递类类型作为参数

我有一个实现接口的类适配器。我想用 MyFooClass 实例填充数组结构,我想从外部接收 MyFooClass 的名称或引用。我将在我的适配器代码中实例化它们。

例如:

    public void FillWsvcStructs(DataSet ds, ClassType Baz)
    {
        IFoo.Request = ds.DataTable[0].Request;
        IFoo.Modulebq = string.Empty;
        IFoo.Clasific = string.Empty;
        IFoo.Asignadoa = ds.DataTable[0].Referer;
        IFoo.Solicita = "Jean Paul Goitier";


        // Go with sub-Elems (Also "Interfaceated")
        foreach (DataSet.DataTableRow ar in ds.DataTable[1])
        {
            if ((int) ar.StatusOT != (int)Props.StatusOT.NotOT)
            {
                ///From HERE!
                IElemRequest req = new (Baz)(); // I don't know how to do it here
                ///To HERE!

                req.Id = string.Empty;
                req.Type = string.Empty;
                req.Num = string.Empty;
                req.Message = string.Empty;
                req.Trkorr = ar[1];
                TRequest.Add(req);
            }
        }
    }
4

6 回答 6

8

我相信泛型及其约束应该做你想做的事:

public void FillWsvcStructs<ClassType>(DataSet ds) where ClassType : IElemRequest, new()
{
    IFoo.Request = ds.DataTable[0].Request;
    IFoo.Modulebq = string.Empty;
    IFoo.Clasific = string.Empty;
    IFoo.Asignadoa = ds.DataTable[0].Referer;
    IFoo.Solicita = "Jean Paul Goitier";


    // Go with sub-Elems (Also "Interfaceated")
    foreach (DataSet.DataTableRow ar in ds.DataTable[1])
    {
        if ((int) ar.StatusOT != (int)Props.StatusOT.NotOT)
        {
            IElemRequest req = new ClassType();

            req.Id = string.Empty;
            req.Type = string.Empty;
            req.Num = string.Empty;
            req.Message = string.Empty;
            req.Trkorr = ar[1];
            TRequest.Add(req);
        }
    }
}
于 2012-06-05T19:19:20.653 回答
6

这可能最好通过使用泛型来解决:

public void FillWsvcStructs<T>(DataSet ds) where T : IElemRequest, new()
{
   //..
   //new() constraint enables using default constructor     
   IElemRequest req = new T(); 
   //IElemRequest constraint enables using interface properties
   req.Id = string.Empty;
   //..
 }

如果您有多种类型需要能够访问/实例化,则声明遵循相同的规则(可以从 msdn 轻松收集):

public void FillWsvcStructs<T, U, V>() where T : IElemRequest, new() 
                                       where U : IFoo, new()
                                       where V : IBar, new()
{

    //..
}
于 2012-06-05T19:17:51.693 回答
4

我想你想要泛型

像这样声明你的方法:

public void FillWsvcStructs<T>(DataSet ds)
    where T : IElemRequest, new()
{
    //You can then do
    IElemRequest req = new T();

}

new()约束需要T有一个公共的无参数构造函数,并且约束IElemRequest确保它实现IElemRequest

于 2012-06-05T19:18:28.267 回答
3

你需要一个通用的:

public void FillWsvcStructs<TBaz>(DataSet ds) where TBaz : IElementRequest, new()
{
    // ...
    IElementRequest req = new TBaz();
    // ...
}

泛型约束 (" where...") 强制您传入的类型实现IElementRequest接口并且它具有无参数构造函数。

假设你有一个Baz类似于这样的类:

public class Baz : IElementRequest
{
    public Baz()
    {
    }
}

你可以像这样调用这个方法:

DataSet ds = new DataSet();
FillWsvcStructs<Baz>(ds);

附录

多个不同的泛型类型参数每个都可以有自己的类型约束:

public void FillWsvcStructs<TFoo, TBar, TBaz>(DataSet ds) 
    where TFoo : IFoo, new()
    where TBar : IBar, new()
    where TBaz : IElementRequest, new()
{
    // ...
    IFoo foo = new TFoo();
    IBar bar = new TBar();
    IElementRequest req = new TBaz();
    // ...
}
于 2012-06-05T19:18:02.353 回答
0

您可能想使用Activator.CreateInstance

IElemRequest req = (IElemRequest) Activator.CreateInstance(Baz);

如果Baz表示的类型有一个带参数的构造函数,那么它的复杂性将会增加(因为您必须使用反射或动态调用才能使其工作)。如果Baz不代表继承自的类型IElemRequest,您将得到一个丑陋的运行时错误。

于 2012-06-05T19:20:25.880 回答
0

方法:

public void FillWsvcStructs<T>(DataSet ds) where T : IElemRequest, new() {
    ...
    IElemRequest req = new T();
    ...
}

调用方法:

FillWsvcStructs<Bez>(ds);
于 2012-06-05T19:21:09.433 回答