C#泛型 – 类型参数的约束

前端之家收集整理的这篇文章主要介绍了C#泛型 – 类型参数的约束前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试构建一个使用C#的泛型功能的工厂方法.

在这个工厂方法中,我想将它约束到一些特定的类,所有这些类都没有默认的构造函数.

这是我的例子.有人可以告诉我是否可以运行它?

public class AbstractClass {
    //this abstract class does not have a default constructor,nor its subclasses
    public AbstractClass(SomeClassName obj) {
        //use obj for initialization
    }
}

//this factory class should create objects of type T that inherit 
//from AbstractClass and invoke the non-default constructor
public class FactoryClass {
    public static T BuildObject<T> (SomeClassName obj) where T: AbstractClass {
        return new T(obj); //does not work?!?!?!
    }
}


//Edit: ANSWER!!!
public static T BuildObject<T>(SomeClassUsedForTheConstructor item) where T : SomeAbstractClass { 
return (T) Activator.CreateInstance(typeof (T),item); 
}

解决方法

查看 Type类和GetConstructor.获得ConstructorInfo对象后,使用Invoke方法.
var x = typeof(T);
var t = x.GetConstructor(new[] {obj.GetType()});
object u = t.Invoke(<inputs>);
原文链接:https://www.f2er.com/csharp/101046.html

猜你在找的C#相关文章