Assembly.CreateInstance()與Activator.CreateInstance()方法
轉自: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);
相關文章
- Activator.CreateInstance
- initialize方法與load方法比較
- vue 方法與事件Vue事件
- Object方法與ReflectObject
- wait()方法與await()方法的區別AI
- net 靜態方法與非靜態方法
- Java中方法重寫與方法過載Java
- Java 介面與抽象方法Java抽象
- JavaScript | 函式與方法JavaScript函式
- Go: 指標方法與值方法<->指標型別與值型別Go指標型別
- 陣列與字串方法與相互轉換陣列字串
- jquery中append()方法與after()方法的區別jQueryAPP
- 介面中的預設方法與靜態方法
- springdatajpa 中get××方法與find××方法的區別Spring
- ScheduledExecutorService中scheduleAtFixedRate方法與scheduleWithFixedDelay方法的區別
- Socket類的getInputStream方法與getOutputStream方法的使用
- Servlet生命週期與方法Servlet
- Scala 的方法與函式函式
- word與excel轉pdf方法Excel
- FTP與SBM連線方法FTP
- jQuery之empty()與remove()方法jQueryREM
- 策略模式與模板方法模式模式
- 方法快取與查詢快取
- ElasticSearch與SpringBoot的整合與JPA方法的使用ElasticsearchSpring Boot
- 常用的幾個陣列方法與數學方法陣列
- over fit與underfit的區別與解決方法
- OpenCV 簡介與安裝方法OpenCV
- 西瓜種類與挑選方法
- MKL與VS2019配置方法
- Python科普系列——類與方法(上篇)Python
- Python科普系列——類與方法(下篇)Python
- [SpringBoot] 配置檔案 與常用方法Spring Boot
- 靜態域與靜態方法
- 學習Scala 方法與函式函式
- Vue 計算屬性與方法Vue
- 146.synchronized同步方法與塊synchronized
- 基本方法的呼叫與過載
- scala語法 - 方法與函式函式