当前位置:   article > 正文

工厂设计模式详解_工厂模式动态service

工厂模式动态service
                                    工厂设计模式详解
  • 1

工厂模式是抽象类的应用之一。下面详细的讲解利用抽象类来实现工厂模式的过程。
1. 工厂模式的结构图。
2. 工厂模式的应用。

一:工厂模式的结构图。

这里写图片描述

工厂模式的使用过程是:用户调用工厂类如上图中的CatFactory类来生成一个CatService,用户不需要了解到CatService类的实现过程,用户需要某个类的时候只需要调用它的工厂方法,工厂方法会给用户返回一个实例。利用Service和ServiceFactory接口的作用是利用多态。

二:工厂模式的应用。

package factoryTest;

interface Service {
    void method1();

    void method2();

}

interface ServiceFactory {
    Service getService();
}

class CatService implements Service {
    public void method1() {
        System.out.println(":Cat realized the method1");
    }

    public void method2() {
        System.out.println(":Cat realized the method2");
    }
}

class DogService implements Service {
    public void method1() {
        System.out.println(":Dog realized the method1");
    }

    public void method2() {
        System.out.println(":Dog realized the method2");
    }
}

class CatFactory implements ServiceFactory {
    @Override
    public Service getService() {
        return new CatService();
    }
}

class DogFactory implements ServiceFactory {
    @Override
    public Service getService() {
        return new DogService();
    }
}

public class FactoryTest {
    public static void serviceConsumer(ServiceFactory fact) {
        Service service = fact.getService();
        service.method1();
        service.method2();

    }

    public static void main(String[] args) {
        serviceConsumer(new CatFactory());
        serviceConsumer(new DogFactory());
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60

由上面代码可以看到工厂模式与接口结合的好处是:利用工厂可以直接提供服务,而且由于接口的存在各种不同的具体工厂实现类也可以进行匹配,使得代码更加的紧凑。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/907525
推荐阅读
相关标签
  

闽ICP备14008679号