http://www.sufeinet.com/plugin.php?id=keke_group

苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

分布式系统框架(V2.0) 轻松承载百亿数据,千万流量!讨论专区 - 源码下载 - 官方教程

HttpHelper爬虫框架(V2.7-含.netcore) HttpHelper官方出品,爬虫框架讨论区 - 源码下载 - 在线测试和代码生成

HttpHelper爬虫类(V2.0) 开源的爬虫类,支持多种模式和属性 源码 - 代码生成器 - 讨论区 - 教程- 例子

查看: 8946|回复: 4

[学习心得] C#命令模式列子

[复制链接]
发表于 2019-1-11 14:32:17 | 显示全部楼层 |阅读模式
一、  命令模式的实际应用案例

下面的代码使用命令模式演示了一个简单的计算器,并允许执行 undo 与 redo。注意:"operator"在 C#中是
关键词,所以在前面添加一个"@"将其变为标识符。

[C#] 纯文本查看 复制代码
// Command pattern -- Real World example
using System;
using System.Collections;
// "Command"
abstract class Command
{
    // Methods
    public abstract void Execute();
    public abstract void UnExecute();
}
// "ConcreteCommand"
class CalculatorCommand : Command
{
    // Fields
    char @operator;
    int operand;
    readonly Calculator calculator;
    // Constructor
    public CalculatorCommand(Calculator calculator,
    char @operator, int operand)
    {
        this.calculator = calculator;
        this.@operator = @operator;
        this.operand = operand;
    }
    // Properties
    public char Operator
    {
        set { @operator = value; }
    }
    public int Operand
    {
        set { operand = value; }
    }
    // Methods
    public override void Execute()
    {
        calculator.Operation(@operator, operand);
    }
    public override void UnExecute()
    {
        calculator.Operation(Undo(@operator), operand);
    }
    // Private helper function
    private char Undo(char @operator)
    {
        char undo = ' ';
        switch (@operator)
        {
            case '+': undo = '-'; break;
            case '-': undo = '+'; break;
            case '*': undo = '/'; break;
            case '/': undo = '*'; break;
        }
        return undo;
    }
}
// "Receiver"
class Calculator
{
    // Fields
    private int total;
    // Methods
    public void Operation(char @operator, int operand)
    {
        switch (@operator)
        {
            case '+': total += operand; break;
            case '-': total -= operand; break;
            case '*': total *= operand; break;
            case '/': total /= operand; break;
        }
        Console.WriteLine("Total = {0} (following {1} {2})",
        total, @operator, operand);
    }
}
// "Invoker"
class User
{
    // Fields
    private readonly Calculator calculator = new Calculator();
    private readonly ArrayList commands = new ArrayList();
    private int current;
    // Methods
    public void Redo(int levels)
    {
        Console.WriteLine("---- Redo {0} levels ", levels);
        // Perform redo operations
        for (int i = 0; i < levels; i++)
            if (current < commands.Count - 1)
                ((Command)commands[current++]).Execute();
    }
    public void Undo(int levels)
    {
        Console.WriteLine("---- Undo {0} levels ", levels);
        // Perform undo operations
        for (int i = 0; i < levels; i++)
            if (current > 0)
                ((Command)commands[--current]).UnExecute();
    }
    public void Compute(char @operator, int operand)
    {
        // Create command operation and execute it
        Command command = new CalculatorCommand(
        calculator, @operator, operand);
        command.Execute();
        // Add command to undo list
        commands.Add(command);
        current++;
    }
}
/// <summary>
/// CommandApp test
/// </summary>
public class Client
{
    public static void Main(string[] args)
    {
        // Create user and let her compute
        User user = new User();
        user.Compute('+', 100);
        user.Compute('-', 50);
        user.Compute('*', 10);
        user.Compute('/', 2);
        // Undo and then redo some commands
        user.Undo(4);
        user.Redo(3);
    }
}


七 、  在什么情况下应当使用命令模式

在下面的情况下应当考虑使用命令模式:

1、使用命令模式作为"CallBack"在面向对象系统中的替代。"CallBack"讲的便是先将一个函数登记上,然后在
以后调用此函数。

2、需要在不同的时间指定请求、将请求排队。一个命令对象和原先的请求发出者可以有不同的生命期。换言之,
原先的请求发出者可能已经不在了,而命令对象本身仍然是活动的。这时命令的接收者可以是在本地,也可以在
网络的另外一个地址。命令对象可以在串形化之后传送到另外一台机器上去。

3、系统需要支持命令的撤消(undo)。命令对象可以把状态存储起来,等到客户端需要撤销命令所产生的效果时,
可以调用 undo()方法,把命令所产生的效果撤销掉。命令对象还可以提供 redo()方法,以供客户端在需要时,
再重新实施命令效果。

4、如果一个系统要将系统中所有的数据更新到日志里,以便在系统崩溃时,可以根据日志里读回所有的数据更
新命令,重新调用 Execute()方法一条一条执行这些命令,从而恢复系统在崩溃前所做的数据更新。

5、一个系统需要支持交易(Transaction)。一个交易结构封装了一组数据更新命令。使用命令模式来实现交易
结构可以使系统增加新的交易类型。

八 、  使用命令模式的优点和缺点

命令允许请求的一方和接收请求的一方能够独立演化,从而且有以下的优点:

&#61623;  命令模式使新的命令很容易地被加入到系统里。

&#61623;  允许接收请求的一方决定是否要否决(Veto)请求。

&#61623;  能较容易地设计-个命令队列。

&#61623;  可以容易地实现对请求的 Undo 和 Redo。

&#61623;  在需要的情况下,可以较容易地将命令记入日志。

&#61623;  命令模式把请求一个操作的对象与知道怎么执行一个操作的对象分割开。

&#61623;  命令类与其他任何别的类一样,可以修改和推广。

&#61623;  你可以把命令对象聚合在一起,合成为合成命令。比如宏命令便是合成命令的例子。合成命令是合成模式的应用。

&#61623;  由于加进新的具体命令类不影响其他的类,因此增加新的具体命令类很容易。

命令模式的缺点如下:

&#61623;  使用命令模式会导致某些系统有过多的具体命令类。某些系统可能需要几十个,几百个甚至几千个具体
命令类,这会使命令模式在这样的系统里变得不实际。







1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
发表于 2019-1-11 14:33:17 | 显示全部楼层
强烈支持楼主ing……
发表于 2019-1-11 14:38:35 | 显示全部楼层
我只是路过打酱油的。
发表于 2019-1-11 15:15:03 | 显示全部楼层
我只是路过打酱油的。
发表于 2019-1-11 15:36:04 | 显示全部楼层
强烈支持楼主ing……
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

QQ|手机版|小黑屋|手机版|联系我们|关于我们|广告合作|苏飞论坛 ( 豫ICP备18043678号-2)

GMT+8, 2024-11-18 14:47

© 2014-2021

快速回复 返回顶部 返回列表