深入了解Java中常用的设计模式

发布时间:2024年01月12日

标题:深入了解Java中常用的设计模式

设计模式是软件开发中的通用解决方案,它们提供了在特定情境下处理常见问题的模板。在Java编程中,设计模式是提高代码质量、可维护性和可扩展性的关键。本文将介绍几种常用的设计模式,并通过详细的解释和示例代码,帮助读者更好地理解和运用这些模式。

1. 单例模式(Singleton Pattern)

单例模式确保一个类只有一个实例,并提供一个全局访问点。在Java中,可以通过以下方式实现单例模式:

public class Singleton {
    private static Singleton instance;

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

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

通过上述代码,我们保证了在应用程序中只能创建一个Singleton类的实例。在需要使用单例的地方,通过getInstance方法获取唯一的实例。

2. 工厂模式(Factory Pattern)

工厂模式用于创建对象的接口,但让子类决定实例化哪个类。这有助于将创建代码与实际使用代码分离,提高代码的可维护性。以下是一个简单的工厂模式示例:

interface Shape {
    void draw();
}

class Circle implements Shape {
    @Override
    public void draw() {
        System.out.println("Drawing Circle");
    }
}

class Square implements Shape {
    @Override
    public void draw() {
        System.out.println("Drawing Square");
    }
}

class ShapeFactory {
    public Shape createShape(String type) {
        if ("circle".equalsIgnoreCase(type)) {
            return new Circle();
        } else if ("square".equalsIgnoreCase(type)) {
            return new Square();
        }
        return null;
    }
}

通过ShapeFactory,我们可以根据需要创建不同的形状对象。

ShapeFactory factory = new ShapeFactory();
Shape circle = factory.createShape("circle");
circle.draw(); // Drawing Circle

Shape square = factory.createShape("square");
square.draw(); // Drawing Square

3. 观察者模式(Observer Pattern)

观察者模式定义了一种一对多的依赖关系,当一个对象的状态发生改变时,所有依赖于它的对象都得到通知并自动更新。在Java中,观察者模式常用于实现事件处理系统。以下是一个简单的观察者模式示例:

import java.util.ArrayList;
import java.util.List;

interface Observer {
    void update(String message);
}

class ConcreteObserver implements Observer {
    private String name;

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

    @Override
    public void update(String message) {
        System.out.println(name + " received message: " + message);
    }
}

class Subject {
    private List<Observer> observers = new ArrayList<>();

    public void addObserver(Observer observer) {
        observers.add(observer);
    }

    public void removeObserver(Observer observer) {
        observers.remove(observer);
    }

    public void notifyObservers(String message) {
        for (Observer observer : observers) {
            observer.update(message);
        }
    }
}

通过上述代码,我们可以创建观察者和被观察者对象,并实现状态的自动更新。

ConcreteObserver observer1 = new ConcreteObserver("Observer 1");
ConcreteObserver observer2 = new ConcreteObserver("Observer 2");

Subject subject = new Subject();
subject.addObserver(observer1);
subject.addObserver(observer2);

subject.notifyObservers("Hello Observers!");
// Output:
// Observer 1 received message: Hello Observers!
// Observer 2 received message: Hello Observers!

这样,当Subject的状态发生改变时,所有注册的观察者都会收到通知。

4. 策略模式(Strategy Pattern)

策略模式定义了一系列的算法,将每一个算法封装起来,并且使它们可以相互替换。这种模式让算法的变化独立于使用算法的客户。以下是一个简单的策略模式示例:

interface PaymentStrategy {
    void pay(int amount);
}

class CreditCardPayment implements PaymentStrategy {
    private String cardNumber;

    public CreditCardPayment(String cardNumber) {
        this.cardNumber = cardNumber;
    }

    @Override
    public void pay(int amount) {
        System.out.println("Paid " + amount + " using credit card " + cardNumber);
    }
}

class PayPalPayment implements PaymentStrategy {
    private String email;

    public PayPalPayment(String email) {
        this.email = email;
    }

    @Override
    public void pay(int amount) {
        System.out.println("Paid " + amount + " using PayPal account " + email);
    }
}

class ShoppingCart {
    private PaymentStrategy paymentStrategy;

    public void setPaymentStrategy(PaymentStrategy paymentStrategy) {
        this.paymentStrategy = paymentStrategy;
    }

    public void checkout(int amount) {
        paymentStrategy.pay(amount);
    }
}

通过策略模式,可以动态地切换支付方式,而不影响购物车的其他部分。

ShoppingCart cart = new ShoppingCart();

cart.setPaymentStrategy(new CreditCardPayment("1234-5678-9101-1121"));
cart.checkout(1000);
// Output: Paid 1000 using credit card 1234-5678-9101-1121

cart.setPaymentStrategy(new PayPalPayment("example@email.com"));
cart.checkout(500);
// Output: Paid 500 using PayPal account example@email.com

5. 装饰者模式(Decorator Pattern)

装饰者模式允许向一个现有的对象添加新的功能,同时又不改变其结构。这种类型的设计模式属于结构型模式。以下是一个简单的装饰者模式示例:

interface Coffee {
    double cost();
}

class SimpleCoffee implements Coffee {
    @Override
    public double cost() {
        return 5.0; // 基础咖啡价格
    }
}

class MilkDecorator implements Coffee {
    private Coffee coffee;

    public MilkDecorator(Coffee coffee) {
        this.coffee = coffee;
    }

    @Override
    public double cost() {
        return coffee.cost() + 2.0; // 加牛奶的价格
    }
}

class SugarDecorator implements Coffee {
    private Coffee coffee;

    public SugarDecorator(Coffee coffee) {
        this.coffee = coffee;
    }

    @Override
    public double cost() {
        return coffee.cost() + 1.0; // 加糖的价格
    }
}

通过装饰者模式,我们可以创建各种不同配料的咖啡。

Coffee simpleCoffee = new SimpleCoffee();
System.out.println("Cost of simple coffee: " + simpleCoffee.cost());

Coffee milkCoffee = new MilkDecorator(simpleCoffee);
System.out.println("Cost of milk coffee: " + milkCoffee.cost());

Coffee sugarMilkCoffee = new SugarDecorator(milkCoffee);
System.out.println("Cost of sugar milk coffee: " + sugarMilkCoffee.cost());

这样,我们可以方便地组合不同的咖啡和配料,而不需要改变原有的代码结构。

6. 适配器模式(Adapter Pattern)

适配器模式允许将一个类的接口转换成客户端所期望的另一种接口。这种模式常用于需要复用一些现有的类,但其接口与所需接口不一致的情况。以下是一个简单的适配器模式示例:

interface Target {
    void request();
}

class Adaptee {
    void specificRequest() {
        System.out.println("Adaptee's specific request");
    }
}

class Adapter implements Target {
    private Adaptee adaptee;

    public Adapter(Adaptee adaptee) {
        this.adaptee = adaptee;
    }

    @Override
    public void request() {
        adaptee.specificRequest();
    }
}

通过适配器模式,我们可以让Adaptee的功能被Target接口所使用。

Adaptee adaptee = new Adaptee();
Target adapter = new Adapter(adaptee);

adapter.request();
// Output: Adaptee's specific request

7. 原型模式(Prototype Pattern)

原型模式通过复制现有对象来创建新对象,而不是通过实例化新对象。这种模式对于创建成本较高的对象或对象的初始化过程较为复杂时很有用。以下是一个简单的原型模式示例:

import java.util.HashMap;
import java.util.Map;

class Shape implements Cloneable {
    private String type;

    public Shape(String type) {
        this.type = type;
    }

    public String getType() {
        return type;
    }

    @Override
    protected Object clone() throws CloneNotSupportedException {
        return super.clone();
    }
}

class ShapeCache {
    private static Map<String, Shape> shapeMap = new HashMap<>();

    static {
        shapeMap.put("circle", new Shape("circle"));
        shapeMap.put("square", new Shape("square"));
    }

    public static Shape getShape(String type) {
        try {
            return (Shape) shapeMap.get(type).clone();
        } catch (CloneNotSupportedException e) {
            e.printStackTrace();
            return null;
        }
    }
}

通过原型模式,我们可以复制现有的图形对象而不需要重新创建。

Shape cachedCircle = ShapeCache.getShape("circle");
System.out.println("Shape type: " + cachedCircle.getType()); // Output: Shape type: circle

Shape cachedSquare = ShapeCache.getShape("square");
System.out.println("Shape type: " + cachedSquare.getType()); // Output: Shape type: square

8. 模板方法模式(Template Method Pattern)

模板方法模式定义了一个算法的骨架,而将一些步骤延迟到子类中。这种模式使得子类可以在不改变算法结构的情况下重新定义算法的某些步骤。以下是一个简单的模板方法模式示例:

abstract class AbstractClass {
    // 模板方法,定义了算法的骨架
    public final void templateMethod() {
        primitiveOperation1();
        primitiveOperation2();
    }

    // 基本操作,由子类实现
    protected abstract void primitiveOperation1();

    protected abstract void primitiveOperation2();
}

class ConcreteClass extends AbstractClass {
    // 实现基本操作
    @Override
    protected void primitiveOperation1() {
        System.out.println("ConcreteClass: Primitive Operation 1");
    }

    @Override
    protected void primitiveOperation2() {
        System.out.println("ConcreteClass: Primitive Operation 2");
    }
}

通过模板方法模式,我们可以在不改变算法结构的情况下,让子类实现算法的具体步骤。

AbstractClass template = new ConcreteClass();
template.templateMethod();
// Output:
// ConcreteClass: Primitive Operation 1
// ConcreteClass: Primitive Operation 2

9. 组合模式(Composite Pattern)

组合模式允许客户端以一致的方式处理单个对象和对象的组合。它将对象组合成树形结构以表示“部分-整体”的层次结构。以下是一个简单的组合模式示例:

import java.util.ArrayList;
import java.util.List;

interface Component {
    void operation();
}

class Leaf implements Component {
    private String name;

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

    @Override
    public void operation() {
        System.out.println("Leaf: " + name);
    }
}

class Composite implements Component {
    private List<Component> children = new ArrayList<>();

    public void add(Component component) {
        children.add(component);
    }

    @Override
    public void operation() {
        System.out.println("Composite:");
        for (Component component : children) {
            component.operation();
        }
    }
}

通过组合模式,我们可以使用相同的方式处理单个对象和对象的组合。

Component leaf1 = new Leaf("Leaf 1");
Component leaf2 = new Leaf("Leaf 2");
Component composite = new Composite();

composite.add(leaf1);
composite.add(leaf2);

composite.operation();
// Output:
// Composite:
// Leaf: Leaf 1
// Leaf: Leaf 2

10. 状态模式(State Pattern)

状态模式允许对象在其内部状态改变时改变其行为。对象看起来好像修改了它的类。以下是一个简单的状态模式示例:

interface State {
    void handle();
}

class ConcreteState1 implements State {
    @Override
    public void handle() {
        System.out.println("ConcreteState1 handling");
    }
}

class ConcreteState2 implements State {
    @Override
    public void handle() {
        System.out.println("ConcreteState2 handling");
    }
}

class Context {
    private State currentState;

    public void setState(State state) {
        currentState = state;
    }

    public void request() {
        currentState.handle();
    }
}

通过状态模式,我们可以根据对象的内部状态改变其行为,而不需要使用大量的条件语句。

Context context = new Context();

State state1 = new ConcreteState1();
context.setState(state1);
context.request();
// Output: ConcreteState1 handling

State state2 = new ConcreteState2();
context.setState(state2);
context.request();
// Output: ConcreteState2 handling

11. 命令模式(Command Pattern)

命令模式将请求封装成对象,以参数化其他对象对这些请求进行排队、请求取消或记录请求日志,同时提供撤销操作。以下是一个简单的命令模式示例:

interface Command {
    void execute();
}

class Light {
    void turnOn() {
        System.out.println("Light is ON");
    }

    void turnOff() {
        System.out.println("Light is OFF");
    }
}

class LightOnCommand implements Command {
    private Light light;

    public LightOnCommand(Light light) {
        this.light = light;
    }

    @Override
    public void execute() {
        light.turnOn();
    }
}

class LightOffCommand implements Command {
    private Light light;

    public LightOffCommand(Light light) {
        this.light = light;
    }

    @Override
    public void execute() {
        light.turnOff();
    }
}

class RemoteControl {
    private Command command;

    public void setCommand(Command command) {
        this.command = command;
    }

    public void pressButton() {
        command.execute();
    }
}

通过命令模式,我们可以将请求封装成命令对象,使得请求的发送者和接收者解耦。

Light light = new Light();
LightOnCommand lightOn = new LightOnCommand(light);
LightOffCommand lightOff = new LightOffCommand(light);

RemoteControl remote = new RemoteControl();

remote.setCommand(lightOn);
remote.pressButton();
// Output: Light is ON

remote.setCommand(lightOff);
remote.pressButton();
// Output: Light is OFF

12. 备忘录模式(Memento Pattern)

备忘录模式用于捕获一个对象的内部状态,以便稍后可以将对象恢复到此状态。以下是一个简单的备忘录模式示例:

class Memento {
    private String state;

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

    public String getState() {
        return state;
    }
}

class Originator {
    private String state;

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

    public Memento saveStateToMemento() {
        return new Memento(state);
    }

    public void getStateFromMemento(Memento memento) {
        state = memento.getState();
    }
}

class Caretaker {
    private Memento memento;

    public void saveMemento(Memento memento) {
        this.memento = memento;
    }

    public Memento retrieveMemento() {
        return memento;
    }
}

通过备忘录模式,我们可以在不破坏封装性的前提下,捕获并外部化一个对象的内部状态。

Originator originator = new Originator();
Caretaker caretaker = new Caretaker();

originator.setState("State1");
caretaker.saveMemento(originator.saveStateToMemento());

originator.setState("State2");
caretaker.saveMemento(originator.saveStateToMemento());

originator.getStateFromMemento(caretaker.retrieveMemento());
System.out.println("Current State: " + originator.getState());
// Output: Current State: State1

13. 访问者模式(Visitor Pattern)

访问者模式表示一个作用于某对象结构中的各元素的操作,它使你可以定义一个新操作而无需改变这些元素的类。以下是一个简单的访问者模式示例:

interface Visitor {
    void visit(ElementA elementA);

    void visit(ElementB elementB);
}

interface Element {
    void accept(Visitor visitor);
}

class ElementA implements Element {
    @Override
    public void accept(Visitor visitor) {
        visitor.visit(this);
    }

    void operationA() {
        System.out.println("ElementA operation");
    }
}

class ElementB implements Element {
    @Override
    public void accept(Visitor visitor) {
        visitor.visit(this);
    }

    void operationB() {
        System.out.println("ElementB operation");
    }
}

class ConcreteVisitor implements Visitor {
    @Override
    public void visit(ElementA elementA) {
        elementA.operationA();
    }

    @Override
    public void visit(ElementB elementB) {
        elementB.operationB();
    }
}

通过访问者模式,我们可以在不改变元素类的前提下,定义新的操作。

ElementA elementA = new ElementA();
ElementB elementB = new ElementB();
ConcreteVisitor visitor = new ConcreteVisitor();

elementA.accept(visitor);
// Output: ElementA operation

elementB.accept(visitor);
// Output: ElementB operation

14. 迭代器模式(Iterator Pattern)

迭代器模式提供了一种顺序访问一个聚合对象中各个元素,而不暴露该对象的内部表示。以下是一个简单的迭代器模式示例:

import java.util.ArrayList;
import java.util.List;

interface Iterator {
    boolean hasNext();

    Object next();
}

interface Aggregate {
    Iterator createIterator();
}

class ConcreteIterator implements Iterator {
    private List<Object> items = new ArrayList<>();
    private int position = 0;

    public void addItem(Object item) {
        items.add(item);
    }

    @Override
    public boolean hasNext() {
        return position < items.size();
    }

    @Override
    public Object next() {
        if (this.hasNext()) {
            return items.get(position++);
        }
        return null;
    }
}

class ConcreteAggregate implements Aggregate {
    private List<Object> items = new ArrayList<>();

    public void addItem(Object item) {
        items.add(item);
    }

    @Override
    public Iterator createIterator() {
        return new ConcreteIterator();
    }
}

通过迭代器模式,我们可以访问一个聚合对象的元素而不暴露其内部表示。

ConcreteAggregate aggregate = new ConcreteAggregate();
aggregate.addItem("Item 1");
aggregate.addItem("Item 2");
aggregate.addItem("Item 3");

Iterator iterator = aggregate.createIterator();
while (iterator.hasNext()) {
    System.out.println(iterator.next());
}
// Output:
// Item 1
// Item 2
// Item 3

15. 解释器模式(Interpreter Pattern)

解释器模式定义了一个语言的文法,并且建立一个解释器来解释该语言中的句子。以下是一个简单的解释器模式示例:

interface Expression {
    boolean interpret(String context);
}

class TerminalExpression implements Expression {
    private String data;

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

    @Override
    public boolean interpret(String context) {
        return context.contains(data);
    }
}

class OrExpression implements Expression {
    private Expression expr1;
    private Expression expr2;

    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);
    }
}

class AndExpression implements Expression {
    private Expression expr1;
    private Expression expr2;

    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);
    }
}

通过解释器模式,我们可以构建一个解释器来解释特定语言的句子。

Expression person1 = new TerminalExpression("Person1");
Expression person2 = new TerminalExpression("Person2");

Expression orExpression = new OrExpression(person1, person2);
Expression andExpression = new AndExpression(person1, person2);

System.out.println("Person1 or Person2? " + orExpression.interpret("Person1")); // Output: Person1 or Person2? true
System.out.println("Person1 and Person2? " + andExpression.interpret("Person1")); // Output: Person1 and Person2? false
ShoppingCart cart = new ShoppingCart();

cart.setPaymentStrategy(new CreditCardPayment("1234-5678-9101-1121"));
cart.checkout(1000);
// Output: Paid 1000 using credit card 1234-5678-9101-1121

cart.setPaymentStrategy(new PayPalPayment("example@email.com"));
cart.checkout(500);
// Output: Paid 500 using PayPal account example@email.com

总结

设计模式是软件开发中的重要概念,它们提供了一套经过验证的解决方案,帮助开发者解决特定问题并提高代码的质量。在本文中,我们详细介绍了多种常用的设计模式,包括但不限于单例模式、工厂模式、观察者模式、策略模式、装饰者模式、适配器模式、原型模式、模板方法模式、组合模式、状态模式、命令模式、备忘录模式、访问者模式、迭代器模式、解释器模式。

这些设计模式可以分为创建型、结构型和行为型三大类,每一种模式都有其独特的应用场景和优势。在实际项目中,了解这些设计模式并灵活运用它们,有助于提高代码的可维护性、可读性和可扩展性。选择合适的设计模式取决于问题的性质和需求的变化,没有一种模式是适用于所有场景的银弹。

总体而言,设计模式是编写高质量、可维护、可扩展软件的重要工具之一。通过深入学习和实践这些设计模式,开发者可以更好地理解面向对象编程的原则,提升自己的设计和架构能力。在日常开发中,灵活运用设计模式将成为编写清晰、健壮代码的关键。希望本文为读者提供了全面而深入的设计模式学习体验,激发对软件设计和架构的更深层次思考。

文章来源:https://blog.csdn.net/fudaihb/article/details/135536522
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。