设计模式

工厂模式

简单工厂模式

我们要运行车,但是无需知道车是怎么造出来的
先需要有车的接口

public interface Car {
    void run();
}

我们现在可以生产两辆车,奔驰和宝马

public class Benz implements Car{
    @Override
    public void run(){
        System.out.println("Benz is running!");
    }
}
public class BMW implements Car {
    @Override
    public void run(){
        System.out.println("BMW is running!");
    }
}

我们有一个工厂根据订单生产不同的车

public class Factory {
    public static Car getCar(String carName){
        switch (carName){
            case "Benz":
                Car benz=new Benz();
                return benz;
            case "BMW":
                Car bmw=new BMW();
                return bmw;
            default:
                return null;
        }
    }
}

作为开车的人,我只想知道我想开哪辆车,并不想知道车是怎么造出来的

public static void main(String[] args) {
        Benz benz=(Benz) Factory.getCar("Benz");
        BMW bmw=(BMW)Factory.getCar("BMW");
        benz.run();
        bmw.run();
    }
image.png

模板方法模式

有一个抽象类,三个抽象方法,一个已实现的算法来使用抽象方法,已决定使用顺序

public abstract class AbstractClass {
    abstract String abstractMethod1();
    abstract boolean abstractMethod2();
    abstract void abstractMethod3();
    public void templateMethod(){
        System.out.println(abstractMethod1());
        if(abstractMethod2()){
            abstractMethod3();
        }
    }
}

两个类继承于此抽象类并实现

public class InstanceClass1 extends AbstractClass{
    @Override
    String abstractMethod1(){
        return "I am class1";
    }
    @Override
    boolean abstractMethod2(){
        return true;
    }
    @Override
    void abstractMethod3(){
        System.out.println("This is the method of class 1");
    }
}
public class InstanceClass2 extends AbstractClass{
    @Override
    String abstractMethod1(){
        return "I am class2";
    }
    @Override
    boolean abstractMethod2(){
        return false;
    }
    @Override
    void abstractMethod3(){
        System.out.println("This is the method of class 2");
    }
}

实现:

public class Scence {
    public static void main(String[] args) {
        AbstractClass class1=new InstanceClass1();
        AbstractClass class2=new InstanceClass2();
        class1.templateMethod();
        class2.templateMethod();
    }
}
image.png

单例模式

饿汉式单例

public class Singleton {
    private Singleton(){}
    private static Singleton instance=new Singleton();
    public static Singleton getInstance(){
        return instance;
    }
}

懒汉式单例

public class Singleton {
    private Singleton(){}
    private static Singleton instance=null;
    public static synchronized Singleton getInstance(){
        if(instance == null){
            instance=new Singleton();
        }
        return instance;
    }
}

命令模式

厂家有两个产品,灯与热水器

public class Heater {
    public void HeaterOn(){
        System.out.println("加热中");
    }
    public void HeaterOff(){
        System.out.println("加热中");
    }
}

需要一个外部设备同时可以控制他俩 难道继承这两个类吗?
非也。
先定义一个Commond接口

public interface Command {
    void excute();
}

大灯控制器

public class LightOnCommand implements Command{
    Light light;
    public LightOnCommand(Light light){
        this.light=light;
    }
    @Override
    public void excute(){
        light.LightOn();
    }
}
public class LightOffCommand implements Command {
    Light light;
    public LightOffCommand(Light light){
        this.light=light;
    }
    @Override
    public void excute(){
        light.LightOff();
    }
}

加热器控制器

public class HeaterOnCommand implements Command {
    Heater heater;
    public HeaterOnCommand(Heater heater){
        this.heater=heater;
    }
    @Override
    public void excute(){
        heater.HeaterOn();
    }
}
public class HeaterOffCommand implements Command{
    Heater heater;
    public HeaterOffCommand(Heater heater){
        this.heater=heater;
    }
    @Override
    public void excute(){
        heater.HeaterOff();
    }
}

调用:

    public static void main(String[] args) {
        Light light=new Light();
        Heater heater=new Heater();
        LightOnCommand lightOnCommand=new LightOnCommand(light);
        LightOffCommand lightOffCommand=new LightOffCommand(light);
        HeaterOnCommand heaterOnCommand=new HeaterOnCommand(heater);
        HeaterOffCommand heaterOffCommand=new HeaterOffCommand(heater);
        lightOnCommand.excute();
        lightOffCommand.excute();
        heaterOnCommand.excute();
        heaterOffCommand.excute();
    }
image.png

适配器模式

客户端需要的接口(新接口)

public interface Target {
    void request();
}

原有的已经实现了的方法,但接口发生了变化

public class Adaptee {
    public void oldRequest(){
        System.out.println("old request....");
    }
}

利用老旧方法实现新接口

public class Adapter implements Target {
    private Adaptee adaptee;
    public Adapter(Adaptee adaptee){
        this.adaptee=adaptee;
    }
    @Override
    public void request(){
        adaptee.oldRequest();
    }
}

运行

    public static void main(String[] args) {
        Adaptee adaptee=new Adaptee();
        Target target=new Adapter(adaptee);
        target.request();
    }
image.png

责任链模式

请假流程

假设现在一个公司的请假流程如下:一天及以下由小组组长审批,一天以上三天以下由经理审批,三天以上七天以下由老板审批,七天以上直接劝退。

如果每次请假时都很长的if…else…来判断该去找谁请假,很不容易扩展,我们使用责任链模式来实现。
抽象类

public abstract class Handler {
    private int day=0;
    private Handler nextHander;
    //处理请求的流程
    public void handleRequest(int day){
        if(isInResponsibilityScope(day)){
            sign();
        }else{
            if(nextHander != null){
                nextHander.handleRequest(day);
            }else{
                System.out.println("请假太久,辞职吧");
            }
        }

    }
    //设置下一个处理者
    public void SetNext(Handler nextHandler){
        this.nextHander=nextHandler;
    }
    protected abstract boolean isInResponsibilityScope(int day);
    //签字
    protected abstract void sign();
}

接下来是三个主管类

public class GroupLeader extends Handler {
    @Override
    protected boolean isInResponsibilityScope(int days){
        if (days <= 1){
            return true;
        }
        return false;
    }
    @Override
    protected void sign(){
        System.out.println("主管签字同意了");
    }
}
public class Manager extends Handler {
    @Override
    protected boolean isInResponsibilityScope(int days){
        if (days > 1 && days <= 3)
        {
            return true;
        }
        return false;
    }
    @Override
    protected void sign(){
        System.out.println("经理签字同意了");
    }
}
public class Boss extends Handler{
    @Override
    protected boolean isInResponsibilityScope(int days){
        if (days > 3 && days <= 7)
        {
            return true;
        }
        return false;
    }
    @Override
    protected void sign(){
        System.out.println("老板签字同意了");
    }
}

接下来是实现的代码

    public static void main(String[] args) {
        GroupLeader groupLeader=new GroupLeader();
        Manager manager=new Manager();
        Boss boss=new Boss();
        groupLeader.SetNext(manager);
        manager.SetNext(boss);
        groupLeader.handleRequest(1);
        groupLeader.handleRequest(2);
        groupLeader.handleRequest(5);
        groupLeader.handleRequest(10);
    }
image.png

装饰器模式

定义接口,给出默认实现

public interface Clothes {
    void getInfo();
}
class DefaultClothes implements Clothes{
    @Override
    public void getInfo(){
        System.out.println("默认方法");
    }
}

装饰器类

public class ClothesDecoration implements Clothes {
    private Clothes clothes;
    public ClothesDecoration(Clothes clothes){
        this.clothes=clothes;
    }
    @Override
    public void getInfo(){
        clothes.getInfo();
    }
}

每件衣服都是一个装饰器

public class ShoseDecorator extends ClothesDecoration {
    private Clothes clothes;
    public ShoseDecorator(Clothes clothes){
        super(clothes);
        this.clothes=clothes;
    }
    @Override
    public void getInfo(){

        System.out.println("穿了双鞋子");
        super.getInfo();
    }

}
public class CoatDecoration extends ClothesDecoration{
    private Clothes clothes;
    public CoatDecoration(Clothes clothes){
        super(clothes);
        this.clothes=clothes;
    }
    @Override
    public void getInfo(){

        System.out.println("穿了大仪");
        super.getInfo();
    }
}

主方法

    public static void main(String[] args) {
        Clothes clothes = new DefaultClothes();
        clothes = new ShoseDecorator(clothes);
        clothes = new CoatDecoration(clothes);
        clothes.getInfo();
    }
image.png

参考于此链接

https://blog.csdn.net/daguanjia11/article/category/3259443

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容

  • 设计模式汇总 一、基础知识 1. 设计模式概述 定义:设计模式(Design Pattern)是一套被反复使用、多...
    MinoyJet阅读 3,937评论 1 15
  • 一、设计模式的分类 总体来说设计模式分为三大类: 创建型模式,共五种:工厂方法模式、抽象工厂模式、单例模式、建造者...
    RamboLI阅读 749评论 0 1
  • 文章部分内容转载自:http://blog.csdn.net/zhangerqing 一、设计模式的分类 总体来说...
    j_cong阅读 2,061评论 0 20
  • 本文首发于个人博客:Lam's Blog - 谈谈23种设计模式在Android源码及项目中的应用,文章由Mark...
    格子林ll阅读 4,644评论 1 105
  • 暗夜撑开灯笼袖 心里的一只猫头鹰倒挂金钩 这样的夜晚气质迥异,显出耄耋之态 总有人无法酣睡,无人为落花署名,无人深...
    日光之下_并无新事阅读 215评论 0 0