首页 > 开发 > 综合 > 正文

C#设计模式之抽象工厂(AbstractFactory)

2024-07-21 02:18:10
字体:
来源:转载
供稿:网友
1. 为什么要用抽象工厂?用抽象工厂的好处

这里我暂时还想不出有什么好处

我觉得就是利用接口来实现封装其子类,让具体的工作交给它的子类去做。所以说这应该不能算抽象工厂的优点,只能算作接口的优点。





2. 在c#中怎样用抽象工厂?

好,我们来看一下怎么来实现

比如说我们要写一个连接数据库的组件,既支持sqlserver的,又要支持oledb的,这时我们就可以用abstractfactory设计模式了。

先定义一个接口:

public interface idbhelper



{



void executenonquery();







dataset executefordataset(string sql);



}



然后定义两个类(一个是sqlserver的,一个是oledb的)来继承idbhelper这个接口:

internal class sqldbhelper:idbhelper



{



public sqldbhelper()



{



}



public void executenonquery()



{



}







public dataset executefordataset(string sql)



{



//这里实现sqlserver的方法



return null;



}



}







internal class oledbhelper:idbhelper



{



public oledbhelper()



{



}



public void executenonquery()



{



}







public dataset executefordataset(string sql)



{



//这里实现oledb的方法



return null;



}



}

然后,来定义一个工厂类:

public class dbhelperfactory



{



public static idbhelper createdbhelper(int dbtype)



{



switch(dbtype)



{



case 1:



return new sqldbhelper();



case 2:



return new oledbhelper();



default:



return null;



}



}



}



最后我们来调用这个工厂类:

public class abstractfactorytest



{



public void testmethod()



{



idbhelper sqldb=dbhelperfactory.createdbhelper(1);



sqldb.executenonquery();



}



}



这个时候我们就可以很方便的调用数据库组件了,在调用createdbhelper方法时,传入参数为1,那么就是调用sqldbhelper这个类,传入参数为2,那么就是调用oledbhelper这个类。当然传入的参数你还可以把它变为枚举型,这样就更加方便了。



这样的写法也更利于扩展,比如说以后要添加一个oracledbhelper时,你只需要再添加一个类,改动一个方法(createdbhelper)就可以了。



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表