Facade(外观)模式

Facade(外观)模式是一个功能介于工具包和完整应用程序之间的类,可提供包或子系统中类的简化功能。

Facade模式通常起源于普通的程序开发。当从多个不同类中分离你的代码时,可能需要通过提取访问子系统的类来重构系统。

/*
 * Copyright (c) 2001, 2005. Steven J. Metsker.
 *
 * Steve Metsker makes no representations or warranties about
 * the fitness of this software for any particular purpose,
 * including the implied warranty of merchantability.
 *
 * Please use this software as you wish with the sole
 * restriction that you may not claim that you wrote it.
 */

import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JPanel;
/**
 * This class displays pair of functions in a panel. The functions
 * are x and y functions, parameterized by time. As the panel plots,
 * time goes 0 to 1.
 */
public class PlotPanel extends JPanel {
    private int points;

    private int[] xPoints;
    private int[] yPoints;

    private Function xFunction;
    private Function yFunction;

    /**
     * Create a plot calculated from the provided x and y functions.
     * These functions must be functions of time; time goes 0 to 1
     * as the panel plots.
     */
    public PlotPanel(int nPoint, Function xFunc, Function yFunc) {
        points = nPoint;
        xPoints = new int[points];
        yPoints = new int[points];
        xFunction = xFunc;
        yFunction = yFunc;
        setBackground(Color.WHITE);
    }

    protected void paintComponent(Graphics graphics) {
        double w = getWidth() - 1;
        double h = getHeight() - 1;

        for (int i = 0; i < points; i++) {
            double t = ((double) i) / (points - 1);
            xPoints[i] = (int) (xFunction.f(t) * w);
            yPoints[i] = (int) (h * (1 - yFunction.f(t)));
        }

        graphics.drawPolyline(xPoints, yPoints, points);
    }
}
/*
 * Copyright (c) 2001, 2005. Steven J. Metsker.
 *
 * Steve Metsker makes no representations or warranties about
 * the fitness of this software for any particular purpose,
 * including the implied warranty of merchantability.
 *
 * Please use this software as you wish with the sole
 * restriction that you may not claim that you wrote it.
 */

import java.awt.Dimension;

import javax.swing.JFrame;

public class ShowFlight {
    /** Show the flight path of a nonexploding aerial shell.
     */
    public static void main(String[] args) {
        PlotPanel p = new PlotPanel(101, new T(), new ShowFlight().new YFunction());
        p.setPreferredSize(new Dimension(300, 200));

        JFrame frame = new JFrame("Flight Path for Shell Duds");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(UI.NORMAL.createTitledPanel("Flight Path", p));

        frame.pack();
        frame.setVisible(true);
    }

    private class YFunction extends Function {
        public YFunction() {
            super(new Function[] {});
        }

        public double f(double t) {
            // y is 0 at t = 0, 1; y is 1 at t = .5
            return 4 * t * (1 - t);
        }
    }
}

其他的类

public abstract class Function {
    protected Function[] sources;

    /**
     * Construct a function that decorates the provided source function.
     *
     * @param f
     *            the source function that this function wraps
     */
    public Function(Function f) {
        this(new Function[] { f });
    }

    /**
     * Construct a function that decorates the provided source functions.
     *
     * @param sources
     *            the source functions that this function wraps
     */
    public Function(Function[] sources) {
        this.sources = sources;
    }

    /**
     * The function that subclasses must implement -- see the subclases for
     * examples.
     *
     * @param t
     *            normalized time, a value between 0 and 1
     * @return a function value
     */
    public abstract double f(double t);

    /**
     * @return a textual representation of this function.
     */
    public String toString() {
        String name = this.getClass().toString();
        StringBuffer buf = new StringBuffer(name);
        if (sources.length > 0) {
            buf.append('(');
            for (int i = 0; i < sources.length; i++) {
                if (i > 0)
                    buf.append(", ");
                buf.append(sources[i]);
            }
            buf.append(')');
        }
        return buf.toString();
    }
}
public class T extends Function {
    /**
     * Construct the identity function that returns the value of t.
     */
    public T() {
        super(new Function[] {});
    }

    /**
     * @return the current value of t.
     * @param t
     *            time
     */
    public double f(double t) {
        return t;
    }
}
import java.awt.*;

import javax.swing.*;
import javax.swing.border.BevelBorder;
import javax.swing.border.TitledBorder;

/**
 * User interface utilities.
 */

public class UI {
	protected Font font = new Font("Book Antiqua", Font.PLAIN, 18);

	public static final int STANDARD_PAD = 10;

	public static final UI NORMAL = new UI();

	/**
	 * @return a standard font that subclasses can override
	 */
	public Font getFont() {
		return font;
	}

	/**
	 * @return a standard padding amount that subclasses can override
	 */
	public int getPad() {
		return STANDARD_PAD;
	}

    /**
     * @return a standard button
     */
    public JButton createButton() {
        JButton button = new JButton();
        button.setSize(128, 128);
        button.setFont(getFont());
        button.setVerticalTextPosition(SwingConstants.BOTTOM);
        button.setHorizontalTextPosition(SwingConstants.CENTER);
        return button;
    }

    /**
	 * @return a standard OK! (or affirmation) button
	 */
	public JButton createButtonOk() {
		JButton button = createButton();
		button.setIcon(getIcon("images/rocket-large.gif"));
		button.setText("Ok!");
		return button;
	}

	/**
	 * @return a standard Cancel! (or negation) button
	 */
	public JButton createButtonCancel() {
		JButton button = createButton();
		button.setIcon(getIcon("images/rocket-large-down.gif"));
		button.setText("Cancel!");
		return button;
	}

	/**
	 * @return a panel with a standard amount of padding around any controls
	 */
	public JPanel createPaddedPanel() {
		JPanel panel = new JPanel();
		panel.setBorder(
            BorderFactory.createEmptyBorder(getPad(), getPad(), getPad(), getPad()));
		return panel;
	}

	/**
	 * @return a panel with a standard amount of padding around any particular
	 *         control
	 * @param c
	 *            the control
	 */
	public JPanel createPaddedPanel(Component c) {
		JPanel panel = createPaddedPanel();
		panel.add(c);
		return panel;
	}

    public static Icon getIcon(String imageName) {
        return new ImageIcon(imageName);
    }

    public JList createList(Object[] contents) {
        JList result = new JList(contents);
        result.setFont(getFont());
        result.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        return result;
    }

    /**
     * @return a titled border with the given title.
     */
    public TitledBorder createTitledBorder(String title) {
        TitledBorder border = BorderFactory.createTitledBorder(
            BorderFactory.createBevelBorder(BevelBorder.RAISED),
            title,
            TitledBorder.LEFT,
            TitledBorder.TOP);
        border.setTitleColor(Color.black);
        border.setTitleFont(getFont());
        return border;
    }

    /**
     * @return a new panel that wraps a titled border around a given panel.
     */
    public JPanel createTitledPanel(String title, JPanel in) {
        JPanel out = new JPanel();
        out.add(in);
        out.setBorder(createTitledBorder(title));
        return out;
    }
}

通常,我们应该把子系统中的类重构为一个个目的明确的类。这样做可以使代码更加容易维护,但这样也会让子系统用户不知从何处开始。为了便于子系统用户的使用,我们可以在子系统中顺带提供一些示例类或者外观类。

示例类通常是指能够独立运行但不可复用的应用程序,仅用来示范子系统的用法。外观类通常是一个可配置、可复用的类,它为方便用户使用子系统提供了一个更高层次的接口。

时间: 2024-08-11 07:38:12

Facade(外观)模式的相关文章

Facade——外观模式

Facade外观模式,也是比较常用的一种模式,基本上所有软件系统中都会用到. GOF 在<设计模式>一书中给出如下定义:为子系统中的一组接口提供一个一致的界面, Facade 模式定义了一个高层接口,这个接口使得这一子系统更加容易使用.简单说,就是将复杂的逻辑封装起来,对外公开简单的接口,由客户程序调用.客户对象通过一个外观接口读写子系统中各接口的数据资源. 适用情景: (1)设计初期阶段,应该有意识的将不同层分离,层与层之间建立外观模式. (2)开发阶段,子系统越来越复杂,增加外观模式提供一

设计模式(十一):FACADE外观模式 -- 结构型模式

1. 概述 外观模式,我们通过外观的包装,使应用程序只能看到外观对象,而不会看到具体的细节对象,这样无疑会降低应用程序的复杂度,并且提高了程序的可维护性.例子1:一个电源总开关可以控制四盏灯.一个风扇.一台空调和一台电视机的启动和关闭.该电源总开关可以同时控制上述所有电器设备,电源总开关即为该系统的外观模式设计. 2. 问题 为了降低复杂性,常常将系统划分为若干个子系统.但是如何做到各个系统之间的通信和相互依赖关系达到最小呢? 3. 解决方案 外观模式:为子系统中的一组接口提供一个一致的界面,

Facade外观模式(C++实现)

外观模式:外观模式的意图是为系统中的大量对象提供一个一致的对外接口,以简化系统的使用.它提供了一个统一的接口,用来访问子系统中的一群接口.外观定义了一个高层接口,让子系统更容易使用.但外观并不屏蔽系统里的对象,如果需要,用户完全可以越过外观的包装使用底层对象以获得更灵活的功能. 外观模式结构图如下: 给出一个简单的C++实现 #include<iostream> using namespace std; class SubSystemA { public: SubSystemA(){} ~Su

java演示facade(外观)模式

实际应用中,原来的代码涉及多个子系统时,重新进行类的设计,将原来分散在源码中的类结构及方法重新组合,形成新的.统一的接口,供上层应用使用. Facade所面对的往往是多个类或其它程序单元,通过重新组合各类及程序单元,对外提供统一的接口/界面. 在遇到以下情况使用Facade模式: 1.当你要为一个复杂子系统提供一个简单接口时.子系统往往因为不断演化而变得越来越复杂.大多数模式使用时都会产生更多更小的类.这使得子系 统更具可重用性,也更容易对子系统进行定制,但这也给那些不需要定制子系统的用户带来一

facade外观模式

通过买股票与通过基金买股票引出外观模式: package com.disign.facade; /** * Created by zhen on 2017-05-18. */ public class TestStock { public void run1(){ Stock1 gu1 = new Stock1(); Stock2 gu2 = new Stock2(); Stock3 gu3 = new Stock3(); gu1.buy(); gu2.buy(); gu3.buy(); gu1

外观模式(Facade)

一.外观模式介绍 面向对象的一个比较重要的法则:迪米特法则(最少知识原则):一个软件实体应当尽可能少的与其他实体发生相互作用. 外观模式:为子系统中的一组接口提供一个一致的界面,此模式定义了一个高层接口.这个接口使得这一子系统更加容易使用.说白了,就可以理解为封装 外观模式的核心:为子系统提供统一的入口,封装子系统的复杂性,便于客户端调用 例1:股民炒股 未使用外观模式情况 要让股民尽可能少的与股票直接打交道,给其提供一个蒙面,让股民跟蒙面打交道.这样就符合了迪米特法则,让股民尽可能少的与股票打

php设计模式之Proxy(代理模式)和Facade(外观)设计模式

Proxy(代理模式)和Facade(外观)设计模式它们均为更复杂的功能提供抽象化的概念,但这两种实现抽象化的过程大不相同 Proxy案例中,所有的方法和成员变量都来自于目标对象,必要时,该代理能够对它所传递的数据进行修改或检查魔术方法使得Proxy的实现变的简单,Proxy模式的一类应用时用来记录方法的访问信息还可以利用Proxy的类确定代码的范围或调试程序中存在的问题 <?php class LoggingProxy{ private $target; //传递进去一个对象 public f

设计模式之外观模式(Facade)摘录

23种GOF设计模式一般分为三大类:创建型模式.结构型模式.行为模式. 创建型模式抽象了实例化过程,它们帮助一个系统独立于如何创建.组合和表示它的那些对象.一个类创建型模式使用继承改变被实例化的类,而一个对象创建型模式将实例化委托给另一个对象.创建型模式有两个不断出现的主旋律.第一,它们都将关于该系统使用哪些具体的类的信息封装起来.第二,它们隐藏了这些类的实例是如何被创建和放在一起的.整个系统关于这些对象所知道的是由抽象类所定义的接口.因此,创建型模式在什么被创建,谁创建它,它是怎样被创建的,以

Java 设计模式:外观模式Facade

Facade 外观模式 外观模式----为子系统的一组接口提供一个统一的界面,此模式定义了一个更高层的接口,这一接口使得子系统更容易使用. 借用<大话设计模式>中的例子:市场上有N多只股票,当股民想要买股票时为了最大化自己的收益需要考察市面上很多种类的股票,然后根据自己的判断选取几只股票组合购买(这种场景下每一只股票都是可以单独购买的,用户需要考察.选取一组股票来一起购买).而有的用户直接购买基金,基金的作用是帮用户选取几只股票来组合购买,用户不用自己去选取多只股票. 在这个场景下:单独的购买