Assembly.CreateInstance()與Activator.CreateInstance()方法

無名_四葉草發表於2020-04-05

轉自:http://www.cnblogs.com/xiaotao823/archive/2008/05/02/1179119.html


Assembly.CreateInstance()與Activator.CreateInstance()方法

動態建立類物件,大多是Activator.CreateInstance()和Activator.CreateInstance<T>()方法,非常好用,一般都用了Assembly.Load("AssemblyName").CreateInstance ("ClassName");的方法,研究一下這兩者到底有什麼區別,在msdn裡,查到了兩個方法的介紹:

Assembly.CreateInstance 方法 (String)

使用區分大小寫的搜尋,從此程式集中查詢指定的型別,然後使用系統啟用器建立它的例項。

Activator.CreateInstance 方法 (Type)

使用與指定引數匹配程度最高的建構函式來建立指定型別的例項。

看完以後,忽然覺得說了跟沒說一樣。不知道是我文字理解能力有問題,還是它表達有問題。

於是,沒辦法,只好用Reflector看看原始碼了。

System.Reflection.Assembly位於mscorlib.dll裡,CreateInstance()方法的原始碼是這樣的

 

System.Activator也位於mscorlib.dll裡,CreateInstance()方法的

public object CreateInstance(string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[]

activationAttributes)
{
      Type type1 = this.GetTypeInternal(typeName, false, ignoreCase, false);
      if (type1 == null)
      {
            return null;
      }
      //注意一下這一句,暈。。。。這裡居然呼叫了Activator.CreateInstance方法
      return Activator.CreateInstance(type1, bindingAttr, binder, args, culture, activationAttributes);
}


原始碼如下

public static object CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)
{
      object obj1;
      if (type == null)
      {
            throw new ArgumentNullException("type");
      }
      if (type is TypeBuilder)
      {
            throw new NotSupportedException(Environment.GetResourceString("NotSupported_CreateInstanceWithTypeBuilder"));
      }
      if ((bindingAttr & ((BindingFlags) 0xff)) == BindingFlags.Default)
      {
            bindingAttr |= BindingFlags.CreateInstance | BindingFlags.Public | BindingFlags.Instance;
      }
      if ((activationAttributes != null) && (activationAttributes.Length > 0))
      {
            if (!type.IsMarshalByRef)
            {
                  throw new NotSupportedException(Environment.GetResourceString("NotSupported_ActivAttrOnNonMBR"));
            }
            if (!type.IsContextful && ((activationAttributes.Length > 1) || !(activationAttributes[0] is UrlAttribute)))
            {
                  throw new NotSupportedException(Environment.GetResourceString("NotSupported_NonUrlAttrOnMBR"));
            }
      }
      try
      {
            obj1 = ((RuntimeType) type.UnderlyingSystemType).CreateInstanceImpl(bindingAttr, binder, args, culture, activationAttributes);
      }
      catch (InvalidCastException)
      {
            throw new ArgumentException(Environment.GetResourceString("Arg_MustBeType"), "type");
      }
      return obj1;
}



一個facade模式,就解決了問題,而System.Activator.CreateInstance()方法的程式碼,下次再研究,先把facade補習一下,呵呵。
===================================================================================

DALFactory預設是每一層封裝到一個程式集(獨立專案)元件裡。通過反射機制建立物件例項。

//從程式集建立物件例項
string path = System.Configuration.ConfigurationSettings.AppSettings["DAL"];//資料層的程式集名稱
return (IDbObject)Assembly.Load(path).CreateInstance(path+".DbObject");

如果你的資料層不是單獨的程式集,可以採用如下方法載入:
//使用與指定引數匹配程度最高的建構函式來建立指定型別的例項
string path = System.Configuration.ConfigurationSettings.AppSettings["DAL"];
string TypeName=path+".DbObject"
Type objType = Type.GetType(TypeName,true);
return (IDbObject)Activator.CreateInstance(objType);


相關文章