於Assembly.CreateInstance()與Activator.CreateInstance()方法函數
動態建立類對象,大可能是Activator.CreateInstance()和Activator.CreateInstance<T>()方法,很是好用,通常都用了Assembly.Load("AssemblyName").CreateInstance ("ClassName");的方法,研究一下這二者到底有什麼區別,在msdn裏,查到了兩個方法的介紹:post
Assembly.CreateInstance 方法 (String)ui
使用區分大小寫的搜索,今後程序集中查找指定的類型,而後使用系統激活器建立它的實例。this
Activator.CreateInstance 方法 (Type)spa
使用與指定參數匹配程度最高的構造函數來建立指定類型的實例。orm
看完之後,突然以爲說了跟沒說同樣。不知道是我文字理解能力有問題,仍是它表達有問題。對象
因而,沒辦法,只好用Reflector看看源代碼了。blog
System.Reflection.Assembly位於mscorlib.dll裏,CreateInstance()方法的源碼是這樣的源碼
System.Activator也位於mscorlib.dll裏,CreateInstance()方法的string
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 bjType = Type.GetType(TypeName,true);
return (IDbObject)Activator.CreateInstance(objType);