SKY外语计算机学习
标题: 静态工厂方法模式(经典) [打印本页]
作者: liugenhua189 时间: 2013-5-17 12:12
标题: 静态工厂方法模式(经典)
本帖最后由 sky_yx 于 2015-12-30 14:09 编辑
- public class SendFactory {
-
- public static Sender produceMail(){
- return new MailSender();
- }
-
- public static Sender produceSms(){
- return new SmsSender();
- }
- }
- public class FactoryTest {
-
- public static void main(String[] args) {
- Sender sender = SendFactory.produceMail();
- sender.Send();
- }
- }
输出:this is mailsender!
总体来说,工厂模式适合:凡是出现了大量的产品需要创建,并且具有共同的接口时,可以通过工厂方法模式进行创建。在以上的三种模式中,第一种如果传入的字符串有误,不能正确创建对象,第三种相对于第二种,不需要实例化工厂类,所以,大多数情况下,我们会选用第三种——静态工厂方法模式。
欢迎光临 SKY外语计算机学习 (http://join.skywj.com/) |
Powered by Discuz! X2.5 |