zoukankan      html  css  js  c++  java
  • 策略模式

    namespace Strategy_DesignPattern
    {
        
    using System;


        
    abstract class Strategy
        {
            
    abstract public void DoAlgorithm();
        }

        
    class FirstStrategy : Strategy
        {
            
    override public void DoAlgorithm()
            {
                Console.WriteLine(
    "In first strategy");
            }
        }

        
    class SecondStrategy : Strategy
        {
            
    override public void DoAlgorithm()
            {
                Console.WriteLine(
    "In second strategy");
            }
        }

        
    class Context
        {
            Strategy s;
            
    public Context(Strategy strat)
            {
                s 
    = strat;
            }

            
    public void DoWork()
            {
                
    // some of the context's own code goes here
            }

            
    public void DoStrategyWork()
            {
                
    // now we can hand off to the strategy to do some 
                
    // more work
                s.DoAlgorithm();
            }
        }

        
    /// <summary>
        
    ///    Summary description for Client.
        
    /// </summary>
        public class Client
        {
            
    public static int Main(string[] args)
            {
                FirstStrategy firstStrategy 
    = new FirstStrategy();
                Context c 
    = new Context(firstStrategy);
                c.DoWork();
                c.DoStrategyWork();

                
    return 0;
            }
        }
    }
  • 相关阅读:
    实战(三):对游戏的破解“木叶忍者”
    实战(一):对“钉钉”的逆向(实现打卡功能)
    实战(二):对“微信”的逆向(实现界面自定义)
    iOS签名机制
    AM64汇编
    动态调试(二)
    动态调试(一)
    theos(二)
    murmurhash
    虚继承
  • 原文地址:https://www.cnblogs.com/aaa6818162/p/1506706.html
Copyright © 2011-2022 走看看