三十五

首页新闻博问专区闪存班级我的博客我的园子账号设置退出登录注册登录xdd666博客园首页新随笔联系订阅管理随笔 - 5  文章 - 0  评论 - 7一文总结设计模式前言看了很多寓教于学写设计模式的,看的有点头疼,注意力全都在故事上了,满脑子都是鸭子,餐厅之类,还有一堆和设计模式不相关的话,翻书都翻的挺累的。这里我整理了下23种设计模式,没什么多余的话,代码演示,简单粗暴,借鉴的地方都附上了参考链接(做个优秀的搬运工),没附上的是自己总结的。借鉴的例子代码,基本都做了一些精简,如果相关例子写的有什么不准确,麻烦在评论里面指出来,最好附上代码,我会尽快修改文章中的相关实例。23种设计模式,一文呈现,方便大家和自己查询,也方便自己随时修改,请配合文章旁边的大纲食用。总述7种面向对象设计原则设计原则名称定 义单一职责原则(Single Responsibility Principle, SRP)一个类只负责一个功能领域中的相应职责开闭原则(Open-Closed Principle, OCP)软件实体应对扩展开放,而对修改关闭里氏代换原则(Liskov Substitution Principle, LSP)所有引用基类对象的地方能够透明地使用其子类的对象迪米特法则(Law of Demeter, LoD)一个软件实体应当尽可能少地与其他实体发生相互作用接口隔离原则(Interface Segregation Principle, ISP)使用多个专门的接口,而不使用单一的总接口依赖倒转原则(Dependence Inversion Principle, DIP)抽象不应该依赖于细节,细节应该依赖于抽象合成复用原则(Composite Reuse Principle, CRP)尽量使用对象组合,而不是继承来达到复用的目的设计模式可分为创建型(Creational),结构型(Structural)和行为型(Behavioral)三种创建型模式主要用于描述如何创建对象(5种)结构型模式主要用于描述如何实现类或对象的组合(7种)行为型模式主要用于描述类或对象怎样交互以及怎样分配职责(11种)图解原则简述1. 单一职责原则定义:一个类只有一个引起它变化的原因。理解:对功能进行分类,代码进行解耦,一个类只管一件事举例:就比如一个网络请求框架大体分为:请求类,缓存类,配置类,不能把这3个混在一起,必须分为3个类去实现不同的功能。2.开闭原则定义:一个实体(类、函数、模块等)应该对外扩展开放,对内修改关闭理解:每次发生变化时,要通过新增代码来增强现有类型的行为,而不是修改原有代码。举例:就比如在软件的生命周期内,因为产品迭代,软件升级维护等原因,需要对原有代码进行修改时,可能会给原有代码引入错误,也可能使得我们对整个功能不得不进行重构,并且需要对原有代码进行重新测试,这样的话,对开发周期影响很大,所以开闭原则刚好解决这个问题。3. 里氏替换原则定义:继承必须确保超类所拥有的性质在子类中仍然成立。理解:在继承类时,除了扩展一些新的功能之外,尽量不要删除或者修改对父类方法的引用,也尽量不要重载父类的方法。举例:你看啊,就比如Object有个方法,叫equals,如果不遵守里氏代替原则,它的子类重载了equals这个方法,并且返回了个null,这个子类的下一个继承者也会返回null,那么,在不同开发人员开发时,可能考虑不到这个问题,那么就可能导致程序崩溃。4.迪米特法则定义:一个模块或对象应尽量少的与其他实体之间发生相互作用,使得系统功能模块相对独立,这样当一个模块修改时,影响的模块就会越少,扩展起来更加容易。理解:一个对象应该对其他对象有最少的了解;一个类应该对自己需要耦合或调用的类知道得最少,类的内部如何实现、如何复杂都与调用者或者依赖者没关系,调用者或者依赖者只需要知道他需要的方法即可,其他的一概不关心。类与类之间的关系越密切,耦合度越大,当一个类发生改变时,对另一个类的影响也越大。举例:一般在使用框架的时候,框架的开发者会抽出一个类供外部调用,而这个主要的类像是一个中介一样去调用框架里面的其他类,恰恰框架里面其他类一般都是不可访问(调用)的,这个框架就遵守了迪米特原则,其他开发人员只关心调用的方法,并不需要关心功能具体如何实现。5.接口隔离原则定义:使用多个专门功能的接口,而不是使用单一的总接口理解:在定义接口方法时应该合理化,尽量追求简单最小,避免接口臃肿举例:在实际开发中,往往为了节省时间,可能会将多个功能的方法抽成一个接口,其实这设计理念不正确的,这样会使接口处于臃肿的状态,这时就需要合理的拆分接口中的方法,另外抽取成一个独立的接口,避免原有的接口臃肿导致代码理解困难。6.依赖倒置原则定义:细节应该依赖于抽象,而抽象不应该依赖于细节理解:高层模块不依赖低层次模块的细节,不依赖具体的类,而是依赖于接口举例:比如说我们写一个网络框架,为了满足不同开发者的需求,即能使用高效的OkHttp框架,也可以使用原生的API。那么是如何进行切换的呢,这个时候需要面向接口编程思想了,把一些网络请求的方法封装成一个接口,然后分别创建OkHttp和原生API的接口实现类,当然也可以扩展其他网络框架的应用。7.合成复用原则定义:尽量使用对象组合,而不是继承来达到复用的目的。理解:它要求在软件复用时,要尽量先使用组合或者聚合等关联关系来实现,其次才考虑使用继承关系来实现。举例:相当于我们开发软件,一个模块的构造,就像搭积木一样,通过组合的形式,完成整体的构建;现在声明式UI框架,对于这种思想比较贯彻。参考https://blog.csdn.net/lovelion/article/details/7536532https://juejin.im/post/5d8861f45188250970131f41创建型模式单例模式饿汉模式public class Singleton {
// 只会实例化一次
private static Singleton instance = new Singleton();

// 私有构造方法,防止被实例化
private Singleton() {}

public static Singleton getInstance() {
    return instance;
}

}
在未使用该类的时候,也会实例化对象,会造成资源浪费,除非在一定会用到该种类的场景,否则不建议使用。懒汉模式public class Singleton {
// 持有私有静态实例,防止被引用;赋值为null,目的是实现延迟加载;volatile修饰是禁止重排
private volatile static Singleton instance = null;

// 私有构造方法,防止被实例化
private Singleton() {}

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

}
使用volatile修饰,可禁止重排,在多线程场景也能保证正常运行;只会在使用的时候,才会去实例化对象,一般场景都可以使用。静态内部类模式public class Singleton {
// 私有构造方法,防止被实例化
private Singleton() {}

// 获取实例
public static Singleton getInstance() {
    return Inner.instance;
}

// 使用一个内部类来维护单例,只有在该类被加载的时候,才会实例化对象
private static class Inner {
    private static Singleton instance = new Singleton();
}

}
饿汉模式升级版,解决了资源浪费问题,同时也能保证线程安全;只有在内部类被加载的时候,才会去实例化对象;相对于懒汉模式,静态内部类的方式避免了排队进同步代码块做null的判断,性能优于懒汉模式,推荐使用。枚举模式public enum Singleton {
// 创建一个枚举对象,该对象天生为单例
INSTANCE;
public Singleton getInstance(){
return INSTANCE;
}
}
推荐:effective java中最佳的单例实现模式就是枚举模式,JVM来帮我们保证线程安全和单一实例,在反射和序列化的场景中,仍能保证单一实例。参考https://blog.csdn.net/zhangerqing/article/details/8194653https://www.cnblogs.com/happy4java/p/11206105.html工厂模式简单工厂模式以手机为例来说明定义一个接口,开机的时候,手机界面上,会显示该手机系统public interface Phone {
//实施开机操作的时候,返回手机系统
String startUp();
}
实现一个Android手机类,实现Phone接口,返回“Android”手机系统public class AndroidPhone implements Phone {
@Override
public String startUp() {
return “Android”;
}
}
实现一个IOS手机类public class IOSPhone implements Phone {
@Override
public String startUp() {
return “IOS”;
}
}
创建手机工厂管理类public class PhoneFactory {
private static Phone mPhone;

//根据系统关键字获取相应手机对象
public static Phone createPhone(String system) {
    switch (system) {
        case "Android":
            mPhone = new AndroidPhone();
            break;
        case "IOS":
            mPhone = new IOSPhone();
            break;
    }
    return mPhone;
}

}
使用public void test() {
Phone android = PhoneFactory.createPhone(“Android”);
Phone ios = PhoneFactory.createPhone(“IOS”);

System.out.print(android.startUp() + "\n");
System.out.print(ios.startUp() + "\n");

}
结果显示:Android IOS工厂模式工厂模式区别与简单工厂模式的是,工厂模式不是用一个统一的工厂类来管理所有对象,而是每一个对象都有不同的工厂相对应。继续以手机为例说明,需要针对Android和IOS手机这俩个实现类,去构建不同的工厂,这边用接口去规范不同的工厂类手机工厂接口public interface PhoneFactory {
//获取相关手机实例
Phone getPhone();
}
创建Android手机工厂public class AndroidPhoneFactory implements PhoneFactory {
@Override
public Phone getPhone() {
return new AndroidPhone();
}
}
创建IOS手机工厂public class IOSPhoneFactory implements PhoneFactory {
@Override
public Phone getPhone() {
return new IOSPhone();
}
}
使用public void test() {
PhoneFactory androidMiFactory = new AndroidPhoneFactory();
PhoneFactory iosFactory = new IOSPhoneFactory();

System.out.print(androidFactory.getPhone().startUp() + "\n");
System.out.print(iosFactory.getPhone().startUp() + "\n");

}
结果显示:Android IOS抽象工厂模式抽象模式是对工厂模式的进一步优化,工厂类不单单只能创建一个对象,而是能创建一组对象。在这里,大家可能存在一个疑惑,简单工厂不也是创建一组对象吗?是的,在这点上,俩者是非常非常相似的,区别在于:简单工厂模式是外部传值进去,以获取不同对象;抽象工厂模式直接通过方法获取对象,不需要传值。继续以手机为例说明,咱们用俩种方式来看看,中间工厂类来创建一组对象1、第一种方式定义一个接口,这个接口里面是获取一系列的手机系统的实例public interface PhoneSystem {
//获取Android手机实例
Phone getAndroid();

//获取IOS手机实例
Phone getIOS();

}
实现抽象工厂的这个接口public class PhoneFactory implements PhoneSystem {
@Override
public Phone getAndroid() {
return new AndroidPhone();
}

@Override
public Phone getIOS() {
    return new IOSPhone();
}

}
使用public void test() {
PhoneSystem phoneSystem = new PhoneFactory();

Phone android = phoneSystem.getXiaoMi();
Phone ios = phoneSystem.getHuaWei();

System.out.print(android.startUp() + "\n");
System.out.print(ios.startUp() + "\n");

}
结果显示:Android IOS2、第二种方式在这里思考下,抽象工厂模式,是在工厂类里面创建一组对象,与外层交互,不是通过关键字去返回相应对象,而是通过某个共性方法去返回“符合条件的实例”。这里假设一个场景:我们定义的手机对象,其中的开机功能,只在对应的手机上才会起作用(Android手机想开机,只能使用Android手机类中的开机方法,IOS也是如此),在这里,假设此款手机是Android手机。此处,我们不定义接口,直接创建抽象工厂类。public class PhoneFactory {
private static Phone instance;
//模拟个数据
private String SYSTEM = “IOS”;

public static Phone getInstance() {
    if("Android".equals(SYSTEM))
    {
        return new AndroidPhone();
    }
    if("IOS".equals(SYSTEM))
    {
        return new IOSPhone();
    }
    return null;
}

}
使用public static void test() {
Phone phone = PhoneFactory.getInstance();
if (phone == null)
return;
System.out.print(phone.startUp() + “\n”);
}
结果显示:IOS建造者模式说明在Computer 中创建一个静态内部类 Builder,然后将Computer 中的参数都复制到Builder类中。在Computer中创建一个private的构造函数,参数为Builder类型在Builder中创建一个public的构造函数,参数为Computer中必填的那些参数,cpu 和ram。在Builder中创建设置函数,对Computer中那些可选参数进行赋值,返回值为Builder类型的实例在Builder中创建一个build()方法,在其中构建Computer的实例并返回实现public class Computer {
private final String cpu;//必须
private final String ram;//必须
private final int usbCount;//可选
private final String keyboard;//可选
private final String display;//可选

private Computer(Builder builder){
    this.cpu=builder.cpu;
    this.ram=builder.ram;
    this.usbCount=builder.usbCount;
    this.keyboard=builder.keyboard;
    this.display=builder.display;
}

public static class Builder{
    private String cpu;//必须
    private String ram;//必须
    private int usbCount;//可选
    private String keyboard;//可选
    private String display;//可选

    public Builder(String cup,String ram){
        this.cpu=cup;
        this.ram=ram;
    }

    public Builder setUsbCount(int usbCount) {
        this.usbCount = usbCount;
        return this;
    }
    public Builder setKeyboard(String keyboard) {
        this.keyboard = keyboard;
        return this;
    }
    public Builder setDisplay(String display) {
        this.display = display;
        return this;
    }        
    public Computer build(){
        return new Computer(this);
    }
}

}
使用Computer computer = new Computer.Builder(“因特尔”,“三星”)
.setDisplay(“三星24寸”)
.setKeyboard(“罗技”)
.setUsbCount(2)
.build();
参考https://zhuanlan.zhihu.com/p/58093669原型模式定义原型模式(Prototype Pattern):使用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。原型模式是一种对象创建型模式。实现public class Prototype implements Cloneable, Serializable {
private static final long serialVersionUID = 1L;
private String string;
private SerializableObject obj;

// 浅复制
public Object clone() throws CloneNotSupportedException {
    Prototype proto = (Prototype) super.clone();
    return proto;
}

// 深复制
public Object deepClone() throws IOException, ClassNotFoundException {
    // 写入当前对象的二进制流
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    ObjectOutputStream oos = new ObjectOutputStream(bos);
    oos.writeObject(this);

    // 读出二进制流产生的新对象 
    ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray());
    ObjectInputStream ois = new ObjectInputStream(bis);
    return ois.readObject();
}

public String getString() {
    return string;
}

public void setString(String string) {
    this.string = string;
}

public SerializableObject getObj() {
    return obj;
}

public void setObj(SerializableObject obj) {
    this.obj = obj;
}

}

class SerializableObject implements Serializable {
private static final long serialVersionUID = 1L;
}
参考https://blog.csdn.net/zhangerqing/article/details/8194653结构型模式适配器模式类适配有一个已存在的将被适配的类public class Adaptee {
public void adapteeRequest() {
System.out.println(“被适配者的方法”);
}
}
定义一个目标接口public interface Target {
void request();
}
怎么才可以在目标接口中的 request() 调用 Adaptee 的 adapteeRequest() 方法呢? 通过一个适配器类,实现 Target 接口,同时继承了 Adaptee 类,然后在实现的 request() 方法中调用父类的 adapteeRequest() 即可实现public class Adapter extends Adaptee implements Target{
@Override
public void request() {
System.out.println(“concreteTarget目标方法”);
super.adapteeRequest();
}
}
测试一下public class Test {
public static void main(String[] args) {
Target adapterTarget = new Adapter();
adapterTarget.request();
}
}
输出concreteTarget目标方法
被适配者的方法
对象适配电源适配器:定义输出交流电接口,输出220V交流电类public interface AC {
int outputAC();
}

public class AC220 implements AC {
public final int output = 220;

@Override
public int outputAC() {
    return output;
}

}
适配器接口,outputDC5V() 方法则用于将输入的电压变换为 5V 后输出public interface DC5Adapter {
int outputDC5V(AC ac);
}
实现电源适配器public class PowerAdapter implements DC5Adapter {
public static final int voltage = 220;

@Override
public int outputDC5V(AC ac) {
    int adapterInput = ac.outputAC();
    //变压器...
    int adapterOutput = adapterInput / 44;
    System.out.println("使用PowerAdapter变压适配器,输入AC:" + adapterInput + "V" 
                       + ",输出DC:" + adapterOutput + "V");
    return adapterOutput;
}

}
使用public class Test {
private List adapters = new LinkedList();

public static void main(String[] args) {
    AC ac = new AC220(); //实例化220v对象
    DC5Adapter adapter = new PowerAdapter(); //实例化适配器
    adapter.outputDC5V(ac); 
}

}
输出使用PowerAdapter变压适配器,输入AC:220V,输出DC:5V
接口适配在实际开发中,经常会遇到接口中定义了太多的方法,以致于有时我们在一些实现类中并不是都需要public interface Sourceable {
public void method1();
public void method2();
}
抽象类Wrapper:public abstract class Wrapper implements Sourceable{
public void method1(){}
public void method2(){}
}
可选择的去实现,我们想要的方法public class SourceSub extends Wrapper {
@Override
public void method1(){
System.out.println(“实现方法一”);
}
}
参考https://juejin.im/post/5ba28986f265da0abc2b6084#heading-7https://blog.csdn.net/zhangerqing/article/details/8239539装饰模式定义装饰器模式(Decorator Pattern)允许向一个现有的对象添加新的功能,同时又不改变其结构。这种类型的设计模式属于结构型模式,它是作为现有的类的一个包装。实现创建一个接口public interface Shape {
void draw();
}
创建俩个实现类public class Rectangle implements Shape {
@Override
public void draw() {
System.out.println(“Shape: Rectangle”);
}
}
public class Circle implements Shape {
@Override
public void draw() {
System.out.println(“Shape: Circle”);
}
}
创建实现了 Shape 接口的抽象装饰类public abstract class ShapeDecorator implements Shape {
protected Shape decoratedShape;

public ShapeDecorator(Shape decoratedShape){
    this.decoratedShape = decoratedShape;
}

@Override
public void draw(){
    decoratedShape.draw();
    System.out.println("Border Color: Red");
}  

}
测试public class Test {
public static void main(String[] args) {
Shape circle = new Circle();
ShapeDecorator circleShape = new ShapeDecorator(new Circle());
ShapeDecorator rectangleShape = new ShapeDecorator(new Rectangle());
System.out.println(“Circle with normal border”);
circle.draw();

    System.out.println("\nCircle of red border");
    circleShape.draw();

    System.out.println("\nRectangle of red border");
    rectangleShape.draw();
}

}
结果Circle with normal border
Shape: Circle

Circle of red border
Shape: Circle
Border Color: Red

Rectangle of red border
Shape: Rectangle
Border Color: Red
参考https://www.runoob.com/design-pattern/decorator-pattern.html代理模式定义在代理模式(Proxy Pattern)中,一个类代表另一个类的功能。这种类型的设计模式属于结构型模式;在代理模式中,我们创建具有现有对象的对象,以便向外界提供功能接口。其实每个模式名称就表明了该模式的作用,代理模式就是多一个代理类出来,替原对象进行一些操作,比如我们在租房子的时候回去找中介,为什么呢?因为你对该地区房屋的信息掌握的不够全面,希望找一个更熟悉的人去帮你做,此处的代理就是这个意思。再如我们有的时候打官司,我们需要请律师,因为律师在法律方面有专长,可以替我们进行操作,表达我们的想法。实现创建一个接口public interface Shape {
void draw();
}
实现public class Circle implements Shape {
@Override
public void draw() {
System.out.println(“Shape: Circle”);
}
}
创建一个代理类public class ProxyShape implements Shape {
private Circle circle;

@Override
public void draw() {
    if(circle == null){
        circle = new Circle();
    }
    circle.draw();
}

}
测试public class Test {
public static void main(String[] args) {
Shape shapeProxy = new ProxyShape();
shape.draw();
}
}
结果Shape: Circle
参考https://blog.csdn.net/zhangerqing/article/details/8239539外观模式定义外观模式(Facade Pattern)隐藏系统的复杂性,并向客户端提供了一个客户端可以访问系统的接口。这种类型的设计模式属于结构型模式,它向现有的系统添加一个接口,来隐藏系统的复杂性这种模式涉及到一个单一的类,该类提供了客户端请求的简化方法和对现有系统类方法的委托调用外观模式就是将他们的关系放在一个Facade类中,降低了类类之间的耦合度实现实现类public class CPU {
public void startup(){
System.out.println(“cpu startup!”);
}

public void shutdown(){
    System.out.println("cpu shutdown!");
}

}
public class Memory {
public void startup(){
System.out.println(“memory startup!”);
}

public void shutdown(){
    System.out.println("memory shutdown!");
}

}
public class Disk {
public void startup(){
System.out.println(“disk startup!”);
}

public void shutdown(){
    System.out.println("disk shutdown!");
}

}
Facade类public class Computer {
private CPU cpu;
private Memory memory;
private Disk disk;

public Computer(){
    cpu = new CPU();
    memory = new Memory();
    disk = new Disk();
}

public void startup(){
    cpu.startup();
    memory.startup();
    disk.startup();
}

public void shutdown(){
    cpu.shutdown();
    memory.shutdown();
    disk.shutdown();
}

}
测试public class Test {
public static void main(String[] args) {
Computer computer = new Computer();
computer.startup();
computer.shutdown();
}
}
结果cpu startup!
memory startup!
disk startup!

cpu shutdown!
memory shutdown!
disk shutdown!
参考https://blog.csdn.net/zhangerqing/article/details/8239539桥接模式定义桥接(Bridge)是用于把抽象化与实现化解耦,使得二者可以独立变化。这种类型的设计模式属于结构型模式,它通过提供抽象化和实现化之间的桥接结构,来实现二者的解耦。这种模式涉及到一个作为桥接的接口,使得实体类的功能独立于接口实现类。这两种类型的类可被结构化改变而互不影响。桥接模式就是把事物和其具体实现分开,使他们可以各自独立的变化。桥接的用意是:将抽象化与实现化解耦,使得二者可以独立变化,像我们常用的JDBC桥DriverManager一样,JDBC进行连接数据库的时候,在各个数据库之间进行切换,基本不需要动太多的代码,甚至丝毫不用动,原因就是JDBC提供统一接口,每个数据库提供各自的实现,用一个叫做数据库驱动的程序来桥接就行了。实现创建桥接实现接口public interface DrawAPI {
public void drawCircle();
}
创建实现了 DrawAPI 接口的实体桥接实现类public class RedCircle implements DrawAPI {
@Override
public void drawCircle(int radius, int x, int y) {
System.out.println("Drawing Circle, color: red);
}
}
public class GreenCircle implements DrawAPI {
@Override
public void drawCircle(int radius, int x, int y) {
System.out.println("Drawing Circle, color: green);
}
}
使用 DrawAPI 接口创建抽象类 Shape。public abstract class Shape {
protected DrawAPI drawAPI;

protected Shape(DrawAPI drawAPI){
    this.drawAPI = drawAPI;
}

public abstract void draw();  

}
现了 Shape 接口的实体类public class Circle extends Shape {
public Circle(DrawAPI drawAPI) {
super(drawAPI);
}

public void draw() {
    drawAPI.drawCircle();
}

}
测试public class BridgePatternDemo {
public static void main(String[] args) {
Shape redCircle = new Circle(new RedCircle());
Shape greenCircle = new Circle(new GreenCircle());

  redCircle.draw();
  greenCircle.draw();

}
}
结果Drawing Circle, color: red
Drawing Circle, color: green
参考https://blog.csdn.net/zhangerqing/article/details/8239539https://www.runoob.com/design-pattern/bridge-pattern.html组合模式定义组合模式(Composite Pattern),又叫部分整体模式,是用于把一组相似的对象当作一个单一的对象。组合模式依据树形结构来组合对象,用来表示部分以及整体层次。这种类型的设计模式属于结构型模式,它创建了对象组的树形结构。这种模式创建了一个包含自己对象组的类。该类提供了修改相同对象组的方式。实现直接看代码public class Employee {
private String name;
private String dept;
private int salary;
private List subordinates;

//构造函数
public Employee(String name,String dept, int sal) {
    this.name = name;
    this.dept = dept;
    this.salary = sal;
    subordinates = new ArrayList<Employee>();
}

public void add(Employee e) {
    subordinates.add(e);
}

public void remove(Employee e) {
    subordinates.remove(e);
}

public List<Employee> getSubordinates(){
    return subordinates;
}

public String toString(){
    return ("Employee :[ Name : "+ name 
            +", dept : "+ dept + ", salary :"
            + salary+" ]");
}   

}
测试,俄罗斯套娃public class Test {
public static void main(String[] args) {
Employee CEO = new Employee(“John”,“CEO”, 30000);

    Employee headSales = new Employee("Robert","Head Sales", 20000);
    Employee salesExecutive1 = new Employee("Richard","Sales", 10000);

    CEO.add(headSales);
    headSales.add(salesExecutive1);

    //打印该组织的所有员工
    System.out.println(CEO); 
    for (Employee headEmployee : CEO.getSubordinates()) {
        System.out.println(headEmployee);
        for (Employee employee : headEmployee.getSubordinates()) {
            System.out.println(employee);
        }
    }        
}

}
结果Employee :[ Name : John, dept : CEO, salary :30000 ]
Employee :[ Name : Robert, dept : Head Sales, salary :20000 ]
Employee :[ Name : Richard, dept : Sales, salary :10000 ]
参考https://www.runoob.com/design-pattern/composite-pattern.html享元模式定义享元模式(Flyweight Pattern)主要用于减少创建对象的数量,以减少内存占用和提高性能。这种类型的设计模式属于结构型模式,它提供了减少对象数量从而改善应用所需的对象结构的方式。享元模式尝试重用现有的同类对象,如果未找到匹配的对象,则创建新对象。典型享元模式典型享元类(享元:Flyweight,w不是大写)class Flyweight {
//内部状态innerState作为成员变量,同一个享元对象其内部状态是一致的
private String innerState;
public Flyweight(String innerState) {
this.innerState = innerState;
}
//外部状态outerState在使用时由外部设置,不保存在享元对象中,即使是同一个对象
public void operation(String outerState) {
//…
}
}
典型享元工厂类class FlyweightFactory {
//定义一个HashMap用于存储享元对象,实现享元池
private HashMap flyweights = newHashMap();

public Flyweight getFlyweight(String key){
    //如果对象存在,则直接从享元池获取
    if(flyWeights.containsKey(key)){
        return (Flyweight) flyweights.get(key);
    } else {
        //如果对象不存在,先创建一个新的对象添加到享元池中,然后返回
        Flyweight fw = newConcreteFlyweight();
        flyweights.put(key,fw);
        return fw;
    }
}

}
通用写法解决某些场景频繁生成实例问题;使用泛型,节省写判断逻辑/**

  • 经典享元模式方法

  • 场景:解决某些场景频繁生成实例问题;使用泛型,节省写判断逻辑

  • 使用:String s = classicFlyweight(String.class);
    */
    private Map<String, Object> flyweightMap;
    private T classicFlyweight(Class clazz) {
    T t;

    if (flyweightMap == null)
    flyweightMap = new HashMap<>();
    String key = clazz.getName();
    if (flyweightMap.get(key) != null) {
    t = (T) flyweightMap.get(key);
    }else {
    try {
    t = clazz.newInstance();
    flyweightMap.put(key, t);
    } catch (Exception e) {
    t = null;
    }
    }

    return t;
    }
    连接池的实现数据库连接池通过连接池的管理,实现了数据库连接的共享,不需要每一次都重新创建连接,节省了数据库重新创建的开销,提升了系统的性能!public class ConnectionPool {
    private Vector pool;

    //公有属性
    private String url = “jdbc:mysql://localhost:3306/test”;
    private String username = “root”;
    private String password = “root”;
    private String driverClassName = “com.mysql.jdbc.Driver”;

    private int poolSize = 100;
    private static ConnectionPool instance = null;
    Connection conn = null;

    //构造方法,做一些初始化工作
    private ConnectionPool() {
    pool = new Vector(poolSize);
    for (int i = 0; i < poolSize; i++) {
    try {
    Class.forName(driverClassName);
    conn = DriverManager.getConnection(url, username, password);
    pool.add(conn);
    } catch (ClassNotFoundException e) {
    e.printStackTrace();
    } catch (SQLException e) {
    e.printStackTrace();
    }
    }
    }

    //返回连接到连接池
    public synchronized void release() {
    pool.add(conn);
    }

    //返回连接池中的一个数据库连接
    public synchronized Connection getConnection() {
    if (pool.size() > 0) {
    Connection conn = pool.get(0);
    pool.remove(conn);
    return conn;
    } else {
    return null;
    }
    }
    }
    参考https://juejin.im/post/5ba9ff4b6fb9a05d0f16df6ahttps://blog.csdn.net/zhangerqing/article/details/8239539行为型模式思考策略模式和状态模式相同点两者通过将行为和状态拆分成一系列小的组件,由条件和状态进行功能更替,这样符合开闭原则,便于扩展。此外均可作为if else或者分支的替换方案;支持的最大行为和状态均有限;不同点策略模式中,类的功能是根据当前条件主动更改;状态模式中,类的功能是被动由当前状态更改;策略模式中每个行为或算法之间没有关联;状态模式中的状态之间有关联,并且状态本身控制着状态转移;解释器模式定义解释器模式(Interpreter Pattern)提供了评估语言的语法或表达式的方式,它属于行为型模式。这种模式实现了一个表达式接口,该接口解释一个特定的上下文。这种模式被用在 SQL 解析、符号处理引擎等。实现创建一个表达式接口。public interface Expression {
    public boolean interpret(String context);
    }
    创建实现了上述接口的实体类。public class TerminalExpression implements Expression {
    private String data;

    public TerminalExpression(String data){
    this.data = data;
    }

    @Override
    public boolean interpret(String context) {
    if(context.contains(data)){
    return true;
    }
    return false;
    }
    }
    public class OrExpression implements Expression {
    private Expression expr1 = null;
    private Expression expr2 = null;

    public OrExpression(Expression expr1, Expression expr2) {
    this.expr1 = expr1;
    this.expr2 = expr2;
    }

    @Override
    public boolean interpret(String context) {
    return expr1.interpret(context) || expr2.interpret(context);
    }
    }
    public class AndExpression implements Expression {
    private Expression expr1 = null;
    private Expression expr2 = null;

    public AndExpression(Expression expr1, Expression expr2) {
    this.expr1 = expr1;
    this.expr2 = expr2;
    }

    @Override
    public boolean interpret(String context) {
    return expr1.interpret(context) && expr2.interpret(context);
    }
    }
    Test 使用 Expression 类来创建规则,并解析它们。public class Test {
    //规则:Robert 和 John 是男性
    public static Expression getMaleExpression(){
    Expression robert = new TerminalExpression(“Robert”);
    Expression john = new TerminalExpression(“John”);
    return new OrExpression(robert, john);
    }

    //规则:Julie 是一个已婚的女性
    public static Expression getMarriedWomanExpression(){
    Expression julie = new TerminalExpression(“Julie”);
    Expression married = new TerminalExpression(“Married”);
    return new AndExpression(julie, married);
    }

    public static void main(String[] args) {
    Expression isMale = getMaleExpression();
    Expression isMarriedWoman = getMarriedWomanExpression();

      System.out.println("John is male? " + isMale.interpret("John"));
      System.out.println("Julie is a married women? " 
                         + isMarriedWoman.interpret("Married Julie"));
    

    }
    }
    结果John is male? true
    Julie is a married women? true
    参考https://www.runoob.com/design-pattern/interpreter-pattern.html状态模式定义在状态模式(State Pattern)中,类的行为是基于它的状态改变的;我们创建表示各种状态的对象和一个行为随着状态对象改变而改变的 context 对象。实现创建一个接口。public interface State {
    public void doAction(Context context);
    }
    俩个状态实现类.public class StartState implements State {

    public void doAction(Context context) {
    System.out.println(“Player is in start state”);
    context.setState(this);
    }

    public String toString(){
    return “Start State”;
    }
    }
    public class StopState implements State {

    public void doAction(Context context) {
    System.out.println(“Player is in stop state”);
    context.setState(this);
    }

    public String toString(){
    return “Stop State”;
    }
    }
    创建 Context 类。public class Context {
    private State state;

    public Context(){
    state = null;
    }

    public void setState(State state){
    this.state = state;
    }

    public State getState(){
    return state;
    }
    }
    测试public class StatePatternDemo {
    public static void main(String[] args) {
    Context context = new Context();

      StartState startState = new StartState();
      startState.doAction(context);
    
      System.out.println(context.getState().toString());
    
      StopState stopState = new StopState();
      stopState.doAction(context);
    
      System.out.println(context.getState().toString());
    

    }
    }
    结果Player is in start state
    Start State
    Player is in stop state
    Stop State
    参考https://www.runoob.com/design-pattern/state-pattern.html策略模式定义在策略模式(Strategy Pattern)中,一个类的行为或其算法可以在运行时更改。这种类型的设计模式属于行为型模式。在策略模式中,我们创建表示各种策略的对象和一个行为随着策略对象改变而改变的 context 对象。策略对象改变 context 对象的执行算法。策略模式定义了一系列算法,并将每个算法封装起来,使他们可以相互替换,且算法的变化不会影响到使用算法的客户.实现策略接口,定义策略执行接口public interface Strategy {
    int calculate(int a, int b);
    }
    具体策略类,实现策略接口,提供具体算法// 加法算法
    public class AddStrategy implements Strategy{
    @Override
    public int calculate(int a, int b) {
    return a + b;
    }
    }
    // 减法算法
    public class SubtractStrategy implements Strategy{
    @Override
    public int calculate(int a, int b) {
    return a - b;
    }
    }
    Context类,持有具体策略类的实例,负责调用具体算法public class Context {
    private Strategy strategy;

    public Context(Strategy strategy) {
    this.strategy = strategy;
    }

    // 动态替换算法(策略)
    public void replaceStrategy(Strategy strategy) {
    this.strategy = strategy;
    }

    public int calculate(int a, int b) {
    return strategy.calculate(a, b);
    }
    }
    测试public class Test{
    public static void main(String[] args) {
    Strategy addStrategy = new AddStrategy();
    Context context = new Context(addStrategy);
    // 输出3
    System.out.println(context.calculate(1, 2));

      Strategy subStrategy = new SubtractStrategy();
      // 动态替换算法(策略)
      context.replaceStrategy(subStrategy);
      // 输出-1
      System.out.println(context.calculate(1, 2));
    

    }
    }
    测试main方法中,我们先使用"加法策略(算法)“创建一个context,然后调用calculate(1,2)方法得到结果3。然后动态替换策略为"减法策略(算法)”,再次调用calculate(1,2)得到结果-1。参考https://www.jianshu.com/p/d0c1b312d563观察者模式定义当对象间存在一对多关系时,则使用观察者模式(Observer Pattern)。比如,当一个对象被修改时,则会自动通知依赖它的对象。实现抽象观察者接口(Observer)为所有的具体观察者定义一个接口,在得到主题通知时更新自己。public interface Observer {
    //更新内容
    public void update(String msg);
    }
    抽象主题接口(Subject)它把所有观察者对象的引用保存到一个聚集里,每个主题都可以有任何数量的观察者。抽象主题提供一个接口,可以增加和删除观察者对象,以及通知所有观察者。public interface Subject {
    //添加观察者
    void attach(Observer observer);
    //删除观察者
    void detach(Observer observer);
    //通知更新
    void notify(String msg);
    }
    观察者接口实现类实现抽象观察者角色所要求的更新接口,以便使本身的状态与主题状态保持一致。public class TestObserver implements Observer{
    private String info;

    public TestObserver(String info){
    this.info = info;
    }

    @Override
    public void update(String msg) {
    System.out.println(info + “----” + msg);
    }
    }
    主题接口实现类将有关状态存入具体观察者对象;当具体主题内部状态放生改变时,通知所有注册过的观察者。public class TestSubject implements Subject{
    private List mList = new ArrayList();

    @Override
    public void attach(Observer observer) {
    mList.add(observer);
    }

    @Override
    public void detach(Observer observer) {
    mList.remove(observer);
    }

    @Override
    public void notify(String msg) {
    for (Observer observer : mList) {
    observer.update(msg);
    }
    }
    }
    测试public class TestMain {
    public static void main(String[] args) {
    Subject subject = new TestSubject();

      Observer observerA = new TestObserver("A:");
      Observer observerB = new TestObserver("B:");
      subject.attach(observerA);
      subject.attach(observerB);
      subject.notify("通知One");
      subject.detach(observerA);
      subject.notify("通知Two");
    

    }
    }
    日志打印中介者模式定义中介者模式(Mediator Pattern)是用来降低多个对象和类之间的通信复杂性。这种模式提供了一个中介类,该类通常处理不同类之间的通信,并支持松耦合,使代码易于维护。实现创建中介类public class ChatRoom {
    public static void showMessage(User user, String message){
    System.out.println(new Date().toString()
    + " [" + user.getName() +"] : " + message);
    }
    }
    创建 user 类。public class User {
    private String name;

    public String getName() {
    return name;
    }

    public void setName(String name) {
    this.name = name;
    }

    public User(String name){
    this.name = name;
    }

    public void sendMessage(String message){
    ChatRoom.showMessage(this,message);
    }
    }
    测试public class Test {
    public static void main(String[] args) {
    User robert = new User(“Robert”);
    User john = new User(“John”);

    robert.sendMessage("Hi! John!");
    john.sendMessage("Hello! Robert!");
    

    }
    }
    结果Thu Jan 31 16:05:46 IST 2013 [Robert] : Hi! John!
    Thu Jan 31 16:05:46 IST 2013 [John] : Hello! Robert!
    参考https://www.runoob.com/design-pattern/mediator-pattern.html备忘录模式定义备忘录模式(Memento Pattern)保存一个对象的某个状态,以便在适当的时候恢复对象。实现Original类是原始类,里面有需要保存的属性value及创建一个备忘录类,用来保存value值。Memento类是备忘录类,Storage类是存储备忘录的类,持有Memento类的实例public class Original {
    private String value;

    public String getValue() {
    return value;
    }

    public void setValue(String value) {
    this.value = value;
    }

    public Original(String value) {
    this.value = value;
    }

    public Memento createMemento(){
    return new Memento(value);
    }

    public void restoreMemento(Memento memento){
    this.value = memento.getValue();
    }
    }
    public class Memento {
    private String value;

    public Memento(String value) {
    this.value = value;
    }

    public String getValue() {
    return value;
    }

    public void setValue(String value) {
    this.value = value;
    }
    }
    public class Storage {
    private Memento memento;

    public Storage(Memento memento) {
    this.memento = memento;
    }

    public Memento getMemento() {
    return memento;
    }

    public void setMemento(Memento memento) {
    this.memento = memento;
    }
    }
    测试public class Test {
    public static void main(String[] args) {
    // 创建原始类
    Original origi = new Original(“egg”);
    // 创建备忘录
    Storage storage = new Storage(origi.createMemento());

      // 修改原始类的状态
      System.out.println("初始化状态为:" + origi.getValue());
      origi.setValue("niu");
      System.out.println("修改后的状态为:" + origi.getValue());
    
      // 回复原始类的状态
      origi.restoreMemento(storage.getMemento());
      System.out.println("恢复后的状态为:" + origi.getValue());
    

    }
    }
    结果初始化状态为:egg
    修改后的状态为:niu
    恢复后的状态为:egg
    参考https://blog.csdn.net/zhangerqing/article/details/8245537命令模式定义命令模式(Command Pattern)是一种数据驱动的设计模式。请求以命令的形式包裹在对象中,并传给调用对象。调用对象寻找可以处理该命令的合适的对象,并把该命令传给相应的对象,该对象执行命令。实现创建一个命令接口。public interface Order {
    void execute();
    }
    创建一个请求类。public class Stock {
    private String name = “ABC”;
    private int quantity = 10;

    public void buy(){
    System.out.println(“Stock [ Name: “+name+”,
    Quantity: " + quantity +” ] bought");
    }
    }
    创建实现了 Order 接口的实体类。public class BuyStock implements Order {
    private Stock abcStock;

    public BuyStock(Stock abcStock){
    this.abcStock = abcStock;
    }

    public void execute() {
    abcStock.buy();
    }
    }
    创建命令调用类。public class Broker {
    private List orderList = new ArrayList();

    public void takeOrder(Order order){
    orderList.add(order);
    }

    public void placeOrders(){
    for (Order order : orderList) {
    order.execute();
    }
    orderList.clear();
    }
    }
    测试public class CommandPatternDemo {
    public static void main(String[] args) {
    Stock abcStock = new Stock();

      BuyStock buyStockOrder = new BuyStock(abcStock);
      Broker broker = new Broker();
      broker.takeOrder(buyStockOrder);
    
      broker.placeOrders();
    

    }
    }
    结果Stock [ Name: ABC, Quantity: 10 ] bought
    参考https://www.runoob.com/design-pattern/command-pattern.html责任链模式定义责任链模式(Chain of Responsibility Pattern)为请求创建了一个接收者对象的链。这种模式给予请求的类型,对请求的发送者和接收者进行解耦。实现创建抽象的记录器类public abstract class AbstractLogger {
    public static int INFO = 1;
    public static int DEBUG = 2;
    public static int ERROR = 3;
    protected int level;

    //责任链中的下一个元素
    protected AbstractLogger nextLogger;

    public void setNextLogger(AbstractLogger nextLogger){
    this.nextLogger = nextLogger;
    }

    public void logMessage(int level, String message){
    if(this.level <= level){
    write(message);
    }
    if(nextLogger != null){
    nextLogger.logMessage(level, message);
    }
    }

    abstract protected void write(String message);
    }
    创建扩展了该记录器类的实体类public class ConsoleLogger extends AbstractLogger {
    public ConsoleLogger(int level){
    this.level = level;
    }

    @Override
    protected void write(String message) {
    System.out.println("Standard Console::Logger: " + message);
    }
    }

public class ErrorLogger extends AbstractLogger {
public ErrorLogger(int level){
this.level = level;
}

@Override
protected void write(String message) {    
    System.out.println("Error Console::Logger: " + message);
}

}

public class FileLogger extends AbstractLogger {
public FileLogger(int level){
this.level = level;
}

@Override
protected void write(String message) {    
    System.out.println("File::Logger: " + message);
}

}
测试public class Test {
private static AbstractLogger getChainOfLoggers(){
AbstractLogger errorLogger = new ErrorLogger(AbstractLogger.ERROR);
AbstractLogger fileLogger = new FileLogger(AbstractLogger.DEBUG);
AbstractLogger consoleLogger = new ConsoleLogger(AbstractLogger.INFO);

    errorLogger.setNextLogger(fileLogger);
    fileLogger.setNextLogger(consoleLogger);
    return errorLogger;  
}

public static void main(String[] args) {
    AbstractLogger loggerChain = getChainOfLoggers();

    loggerChain.logMessage(AbstractLogger.INFO, "This is an information.");
    loggerChain.logMessage(AbstractLogger.DEBUG, "This is a debug level information.");
    loggerChain.logMessage(AbstractLogger.ERROR, "This is an error information.");
}

}
结果Standard Console::Logger: This is an information.
File::Logger: This is a debug level information.
Standard Console::Logger: This is a debug level information.
Error Console::Logger: This is an error information.
File::Logger: This is an error information.
Standard Console::Logger: This is an error information.
参考https://www.runoob.com/design-pattern/chain-of-responsibility-pattern.html访问者模式定义在访问者模式(Visitor Pattern)中,我们使用了一个访问者类,它改变了元素类的执行算法。通过这种方式,元素的执行算法可以随着访问者改变而改变。这种类型的设计模式属于行为型模式。根据模式,元素对象已接受访问者对象,这样访问者对象就可以处理元素对象上的操作。实现Visitor类,存放要访问的对象public interface Visitor {
public void visit(Subject sub);
}
public class MyVisitor implements Visitor {
@Override
public void visit(Subject sub) {
System.out.println(“visit the subject:”+sub.getSubject());
}
}
Subject类,accept方法,接受将要访问它的对象,getSubject()获取将要被访问的属性public interface Visitor {
public void visit(Subject sub);
}
public class MyVisitor implements Visitor {
@Override
public void visit(Subject sub) {
System.out.println(“visit the subject:”+sub.getSubject());
}
}
Subject类,accept方法,接受将要访问它的对象,getSubject()获取将要被访问的属性public interface Subject {
public void accept(Visitor visitor);
public String getSubject();
}
public class MySubject implements Subject {
@Override
public void accept(Visitor visitor) {
visitor.visit(this);
}

@Override
public String getSubject() {
    return "love";
}

}
测试public class Test {
public static void main(String[] args) {
Visitor visitor = new MyVisitor();
Subject sub = new MySubject();
sub.accept(visitor);
}
}
结果:visit the subject:love参考https://blog.csdn.net/zhangerqing/article/details/8245537迭代器模式定义迭代器模式(Iterator Pattern)是 Java 和 .Net 编程环境中非常常用的设计模式。这种模式用于顺序访问集合对象的元素,不需要知道集合对象的底层表示。实现创建接口public interface Iterator {
public boolean hasNext();
public Object next();
}
public interface Container {
public Iterator getIterator();
}
创建实现了 Container 接口的实体类。该类有实现了 Iterator 接口的内部类 NameIterator。public class NameRepository implements Container {
public String names[] = {“Robert” , “John” ,“Julie” , “Lora”};

@Override
public Iterator getIterator() {
    return new NameIterator();
}

private class NameIterator implements Iterator {

    int index;

    @Override
    public boolean hasNext() {
        if(index < names.length){
            return true;
        }
        return false;
    }

    @Override
    public Object next() {
        if(this.hasNext()){
            return names[index++];
        }
        return null;
    }     
}

}
测试public class Test {
public static void main(String[] args) {
NameRepository namesRepository = new NameRepository();
for(Iterator iter = namesRepository.getIterator(); iter.hasNext()😉{
String name = (String)iter.next();
System.out.println("Name : " + name);
}
}
}
结果Name : Robert
Name : John
Name : Julie
Name : Lora
参考https://www.runoob.com/design-pattern/iterator-pattern.html模板模式定义在模板模式(Template Pattern)中,一个抽象类公开定义了执行它的方法的方式/模板。它的子类可以按需要重写方法实现,但调用将以抽象类中定义的方式进行。实现创建一个抽象类public abstract class Game {
abstract void initialize();
abstract void startPlay();
abstract void endPlay();

//模板
public final void play(){
    //初始化游戏
    initialize();
    //开始游戏
    startPlay();
    //结束游戏
    endPlay();
}

}
实现类public class Football extends Game {
@Override
void endPlay() {
System.out.println(“Football Game Finished!”);
}

@Override
void initialize() {
    System.out.println("Football Game Initialized! Start playing.");
}

@Override
void startPlay() {
    System.out.println("Football Game Started. Enjoy the game!");
}

}
测试public class Test {
public static void main(String[] args) {
Game game = new Football();
game.play();
}
}
结果Football Game Initialized! Start playing.
Football Game Started. Enjoy the game!
Football Game Finished!
参考https://www.runoob.com/design-pattern/template-pattern.html最后文章源码:一文总结设计模式 提供良好的搬运格式,搬运使用时,请附上引用出处
__EOF__本文作者:小小涛
本文链接:https://www.cnblogs.com/xdd666/p/14025132.html
关于博主:评论和私信会在第一时间回复。或者直接私信我。
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
声援博主:如果您觉得文章对您有帮助,可以点击文章右下角【推荐】一下。您的鼓励是博主的最大动力!
好文要顶 关注我 收藏该文 xdd666
关注 - 0
粉丝 - 3 +加关注 4 0

« 上一篇: Flutter&Dart Callback转同步 posted @ 2020-11-23 16:18  xdd666  阅读(322)  评论(3)  编辑  收藏

评论列表    回复 引用 #1楼 2020-11-23 17:17 老板跑路了 支持支持 支持(0) 反对(0) https://pic.cnblogs.com/face/1153672/20200701142753.png    回复 引用 #2楼 [楼主] 2020-11-23 18:03 xdd666 @老板跑路了
哈哈,蟹蟹 支持(0) 反对(0) https://pic.cnblogs.com/face/2094309/20201021102044.png    回复 引用 #3楼 47501742020/11/23 下午10:17:372020-11-23 22:17 tky753 收藏了 支持(0) 反对(0) 刷新评论刷新页面返回顶部

发表评论 【福利】注册AWS账号,立享12个月免费套餐 编辑预览 7693b08a-a8f6-49f3-f45a-08d88556cc23 Markdown 帮助自动补全 不改了退出 订阅评论 [Ctrl+Enter快捷键提交]

首页 新闻 博问 专区 闪存 班级 【推荐】News: 大型组态、工控、仿真、CADGIS 50万行VC++源码免费下载
【推荐】从零开始的RPG游戏制作教程,来《魔兽争霸III》共同成长
【推荐】了不起的开发者,挡不住的华为,园子里的品牌专区
【推荐】未知数的距离,毫秒间的传递,声网与你实时互动
【福利】AWS携手博客园为开发者送免费套餐与抵扣券
【推荐】 阿里云折扣价格返场,错过再等一年

公告 昵称: xdd666
园龄: 4个月
粉丝: 3
关注: 0 +加关注首页联系订阅管理<2020年11月>日一二三四五六 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 1 2 3 4 5 6 7 8 9 10 11 12 找找看积分排名最新随笔一文总结设计模式Flutter&Dart Callback转同步flutter_bloc使用解析—骚年,你还在手搭bloc吗!fish_redux使用详解—看完就会用!Flutter Webview添加Cookie的正确姿势我的标签随笔分类Flutter(4)文章分类阅读排行一文总结设计模式(317)flutter_bloc使用解析—骚年,你还在手搭bloc吗!(281)fish_redux使用详解—看完就会用!(217)Flutter Webview添加Cookie的正确姿势(56)Flutter&Dart Callback转同步(46)推荐排行一文总结设计模式(4)最新评论文章档案随笔档案2020年11月(1)2020年10月(4)Close MenuCreated with SnapMENU小小涛 一文总结设计模式 发表于 2020-11-23 16:18阅读:322评论:3推荐:4Scroll DownAlipayWeChat40关注跳至底部

    昵称:                     xdd666         
    园龄:                     4个月         
    粉丝:                     3         
    关注:                     0         +加关注

搜索  常用链接 我的随笔我的评论我的参与最新评论我的标签最新随笔1.一文总结设计模式2.Flutter&Dart Callback转同步3.flutter_bloc使用解析—骚年,你还在手搭bloc吗!4.fish_redux使用详解—看完就会用!5.Flutter Webview添加Cookie的正确姿势 随笔分类 (4) Flutter(4) 随笔档案 (5) 2020年11月(1) 2020年10月(4) 最新评论1. Re:一文总结设计模式收藏了–tky7532. Re:一文总结设计模式@老板跑路了 哈哈,蟹蟹…–xdd6663. Re:一文总结设计模式支持支持–老板跑路了4. Re:flutter_bloc使用解析—骚年,你还在手搭bloc吗!@哈啾小包子 看了下,api简洁,小项目确实很合适…–xdd6665. Re:flutter_bloc使用解析—骚年,你还在手搭bloc吗!@xdd666 有个新的getx也很不错小项目太方便…–哈啾小包子阅读排行榜 1. 一文总结设计模式(317) 2. flutter_bloc使用解析—骚年,你还在手搭bloc吗!(281) 3. fish_redux使用详解—看完就会用!(217) 4. Flutter Webview添加Cookie的正确姿势(56) 5. Flutter&Dart Callback转同步(46) 评论排行榜 1. flutter_bloc使用解析—骚年,你还在手搭bloc吗!(4) 2. 一文总结设计模式(3) 推荐排行榜 1. 一文总结设计模式(4)

This blog has running : 877 d 0 h 5 m 53 sღゝ◡╹)ノ♡ Copyright © 2020 xdd666 Powered by .NET 5.0.0 on Kubernetes Theme version: v1.3.3 / Loading theme version: v1.3.3

前言总述7种面向对象设计原则原则简述创建型模式单例模式工厂模式抽象工厂模式建造者模式原型模式结构型模式适配器模式装饰模式代理模式外观模式桥接模式组合模式享元模式行为型模式思考解释器模式状态模式策略模式观察者模式中介者模式备忘录模式命令模式责任链模式访问者模式迭代器模式模板模式最后

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值