博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
模板模式学习(转)
阅读量:5794 次
发布时间:2019-06-18

本文共 11711 字,大约阅读时间需要 39 分钟。

1. 概述

  定义一个操作中的算法的骨架,而将步骤延迟到子类中。模板方法使得子类可以不改变一个算法的结构即可重定义算法的某些特定步骤。

2. 模式中的角色

  2.1 抽象类(AbstractClass):实现了模板方法,定义了算法的骨架。

  2.2 具体类(ConcreteClass):实现抽象类中的抽象方法,已完成完整的算法。

3. 模式解读

  3.1 模板方法类图

  

  3.2 模板方法模式代码实现

///     /// 抽象类    ///     public abstract class AbstractClass    {        // 一些抽象行为,放到子类去实现        public abstract void PrimitiveOperation1();        public abstract void PrimitiveOperation2();        ///         /// 模板方法,给出了逻辑的骨架,而逻辑的组成是一些相应的抽象操作,它们推迟到子类去实现。        ///         public void TemplateMethod()        {            PrimitiveOperation1();            PrimitiveOperation2();            Console.WriteLine("Done the method.");        }    }    ///     /// 具体类,实现了抽象类中的特定步骤    ///     public class ConcreteClassA : AbstractClass    {        ///         /// 与ConcreteClassB中的实现逻辑不同        ///         public override void PrimitiveOperation1()        {            Console.WriteLine("Implement operation 1 in Concreate class A.");        }        ///         /// 与ConcreteClassB中的实现逻辑不同        ///         public override void PrimitiveOperation2()        {            Console.WriteLine("Implement operation 2 in Concreate class A.");        }    }    ///     /// 具体类,实现了抽象类中的特定步骤    ///     public class ConcreteClassB : AbstractClass    {        ///         /// 与ConcreteClassA中的实现逻辑不同        ///         public override void PrimitiveOperation1()        {            Console.WriteLine("Implement operation 1 in Concreate class B.");        }        ///         /// 与ConcreteClassA中的实现逻辑不同        ///         public override void PrimitiveOperation2()        {            Console.WriteLine("Implement operation 2 in Concreate class B.");        }    }

  3.3 客户端代码

class Program    {        static void Main(string[] args)        {            // 声明抽象类            AbstractClass c;            // 用ConcreteClassA实例化c            c = new ConcreteClassA();            c.TemplateMethod();            // 用ConcreteClassB实例化c            c = new ConcreteClassB();            c.TemplateMethod();            Console.Read();        }    }

  运行结果

  

5. 模式总结

  5.1 优点

    5.1.1 模板方法模式通过把不变的行为搬移到超类,去除了子类中的重复代码。

    5.1.2 子类实现算法的某些细节,有助于算法的扩展。

    5.1.3 通过一个父类调用子类实现的操作,通过子类扩展增加新的行为,符合“开放-封闭原则”。

  5.2 缺点

    5.2.1 每个不同的实现都需要定义一个子类,这会导致类的个数的增加,设计更加抽象。

  5.3 适用场景

    5.1 在某些类的算法中,用了相同的方法,造成代码的重复。

    5.2 控制子类扩展,子类必须遵守算法规则。

6. 模式举例: 用冒泡算法非别对整型数组、浮点数数组、日期数组实现排序。

  6.1 实现类图

  

  6.2 实现代码

  

///     /// 抽象类,定义冒泡排序的骨架    ///     public abstract class BubbleSorter    {        private int operations = 0;        protected int length = 0;        ///         /// 冒泡排序算法        ///         /// 
protected int DoSort() { operations = 0; if (length <= 1) { return operations; } for (int nextToLast = length - 2; nextToLast >= 0; nextToLast--) { for (int index = 0; index <= nextToLast; index++) { if (OutOfOrder(index)) { Swap(index); } operations++; } } return operations; } /// /// 留给子类实现的交换位置方法 /// /// protected abstract void Swap(int index); /// /// 留给子类实现的比较方法 /// /// ///
protected abstract bool OutOfOrder(int index); } /// /// 整型类型的冒泡算法实现 /// public class IntBubbleSorter:BubbleSorter { private int[] array = null; /// /// 用冒泡算法排序 /// /// ///
public int Sort(int[] theArray) { array = theArray; length = array.Length; // 调用冒泡算法 return DoSort(); } /// /// 实现冒泡算法中的交换操作 /// /// protected override void Swap(int index) { int temp = array[index]; array[index] = array[index + 1]; array[index + 1] = temp; } /// /// 实现冒泡算法中的比较操作 /// /// ///
protected override bool OutOfOrder(int index) { return (array[index] > array[index + 1]); } } /// /// 浮点数类型的冒泡算法 /// public class FloatBubbleSorter:BubbleSorter { private float[] array = null; /// /// 用冒泡算法排序 /// /// ///
public int Sort(float[] theArray) { array = theArray; length = array.Length; // 调用冒泡算法 return DoSort(); } /// /// 实现冒泡算法中的交换操作 /// /// protected override void Swap(int index) { float temp = array[index]; array[index] = array[index + 1]; array[index + 1] = temp; } /// /// 实现冒泡算法中的比较操作 /// /// ///
protected override bool OutOfOrder(int index) { return (array[index] > array[index + 1]); } }

  6.3 客户端调用

class Program    {        static void Main(string[] args)        {            // 对整型数组排序            int[] intArray = new int[]{
5, 3, 12, 8, 10}; BubbleSorter.IntBubbleSorter sorter = new BubbleSorter.IntBubbleSorter(); sorter.Sort(intArray); foreach (int item in intArray) { Console.Write(item+" "); } Console.WriteLine(""); // 对浮点数排序 float[] floatArray = new float[] { 5.0f, 3.0f, 12.0f, 8.0f, 10.0f }; BubbleSorter.FloatBubbleSorter floatSorter = new BubbleSorter.FloatBubbleSorter(); floatSorter.Sort(floatArray); foreach (float item in floatArray) { Console.Write(item + " "); } Console.Read(); } }

  运行结果

  

1. 概述

  定义一个操作中的算法的骨架,而将步骤延迟到子类中。模板方法使得子类可以不改变一个算法的结构即可重定义算法的某些特定步骤。

2. 模式中的角色

  2.1 抽象类(AbstractClass):实现了模板方法,定义了算法的骨架。

  2.2 具体类(ConcreteClass):实现抽象类中的抽象方法,已完成完整的算法。

3. 模式解读

  3.1 模板方法类图

  

  3.2 模板方法模式代码实现

///     /// 抽象类    ///     public abstract class AbstractClass    {        // 一些抽象行为,放到子类去实现        public abstract void PrimitiveOperation1();        public abstract void PrimitiveOperation2();        ///         /// 模板方法,给出了逻辑的骨架,而逻辑的组成是一些相应的抽象操作,它们推迟到子类去实现。        ///         public void TemplateMethod()        {            PrimitiveOperation1();            PrimitiveOperation2();            Console.WriteLine("Done the method.");        }    }    ///     /// 具体类,实现了抽象类中的特定步骤    ///     public class ConcreteClassA : AbstractClass    {        ///         /// 与ConcreteClassB中的实现逻辑不同        ///         public override void PrimitiveOperation1()        {            Console.WriteLine("Implement operation 1 in Concreate class A.");        }        ///         /// 与ConcreteClassB中的实现逻辑不同        ///         public override void PrimitiveOperation2()        {            Console.WriteLine("Implement operation 2 in Concreate class A.");        }    }    ///     /// 具体类,实现了抽象类中的特定步骤    ///     public class ConcreteClassB : AbstractClass    {        ///         /// 与ConcreteClassA中的实现逻辑不同        ///         public override void PrimitiveOperation1()        {            Console.WriteLine("Implement operation 1 in Concreate class B.");        }        ///         /// 与ConcreteClassA中的实现逻辑不同        ///         public override void PrimitiveOperation2()        {            Console.WriteLine("Implement operation 2 in Concreate class B.");        }    }

  3.3 客户端代码

class Program    {        static void Main(string[] args)        {            // 声明抽象类            AbstractClass c;            // 用ConcreteClassA实例化c            c = new ConcreteClassA();            c.TemplateMethod();            // 用ConcreteClassB实例化c            c = new ConcreteClassB();            c.TemplateMethod();            Console.Read();        }    }

  运行结果

  

5. 模式总结

  5.1 优点

    5.1.1 模板方法模式通过把不变的行为搬移到超类,去除了子类中的重复代码。

    5.1.2 子类实现算法的某些细节,有助于算法的扩展。

    5.1.3 通过一个父类调用子类实现的操作,通过子类扩展增加新的行为,符合“开放-封闭原则”。

  5.2 缺点

    5.2.1 每个不同的实现都需要定义一个子类,这会导致类的个数的增加,设计更加抽象。

  5.3 适用场景

    5.1 在某些类的算法中,用了相同的方法,造成代码的重复。

    5.2 控制子类扩展,子类必须遵守算法规则。

6. 模式举例: 用冒泡算法非别对整型数组、浮点数数组、日期数组实现排序。

  6.1 实现类图

  

  6.2 实现代码

  

///     /// 抽象类,定义冒泡排序的骨架    ///     public abstract class BubbleSorter    {        private int operations = 0;        protected int length = 0;        ///         /// 冒泡排序算法        ///         /// 
protected int DoSort() { operations = 0; if (length <= 1) { return operations; } for (int nextToLast = length - 2; nextToLast >= 0; nextToLast--) { for (int index = 0; index <= nextToLast; index++) { if (OutOfOrder(index)) { Swap(index); } operations++; } } return operations; } /// /// 留给子类实现的交换位置方法 /// /// protected abstract void Swap(int index); /// /// 留给子类实现的比较方法 /// /// ///
protected abstract bool OutOfOrder(int index); } /// /// 整型类型的冒泡算法实现 /// public class IntBubbleSorter:BubbleSorter { private int[] array = null; /// /// 用冒泡算法排序 /// /// ///
public int Sort(int[] theArray) { array = theArray; length = array.Length; // 调用冒泡算法 return DoSort(); } /// /// 实现冒泡算法中的交换操作 /// /// protected override void Swap(int index) { int temp = array[index]; array[index] = array[index + 1]; array[index + 1] = temp; } /// /// 实现冒泡算法中的比较操作 /// /// ///
protected override bool OutOfOrder(int index) { return (array[index] > array[index + 1]); } } /// /// 浮点数类型的冒泡算法 /// public class FloatBubbleSorter:BubbleSorter { private float[] array = null; /// /// 用冒泡算法排序 /// /// ///
public int Sort(float[] theArray) { array = theArray; length = array.Length; // 调用冒泡算法 return DoSort(); } /// /// 实现冒泡算法中的交换操作 /// /// protected override void Swap(int index) { float temp = array[index]; array[index] = array[index + 1]; array[index + 1] = temp; } /// /// 实现冒泡算法中的比较操作 /// /// ///
protected override bool OutOfOrder(int index) { return (array[index] > array[index + 1]); } }

  6.3 客户端调用

class Program    {        static void Main(string[] args)        {            // 对整型数组排序            int[] intArray = new int[]{
5, 3, 12, 8, 10}; BubbleSorter.IntBubbleSorter sorter = new BubbleSorter.IntBubbleSorter(); sorter.Sort(intArray); foreach (int item in intArray) { Console.Write(item+" "); } Console.WriteLine(""); // 对浮点数排序 float[] floatArray = new float[] { 5.0f, 3.0f, 12.0f, 8.0f, 10.0f }; BubbleSorter.FloatBubbleSorter floatSorter = new BubbleSorter.FloatBubbleSorter(); floatSorter.Sort(floatArray); foreach (float item in floatArray) { Console.Write(item + " "); } Console.Read(); } }

  运行结果

  

转载于:https://www.cnblogs.com/wym789/p/6286021.html

你可能感兴趣的文章
230. Kth Smallest Element in a BST
查看>>
常见的几种异常类型Exception
查看>>
软件工程的本质是管理复杂性
查看>>
Redis(7)-----初识Redis-----客户端对Redis集群的使用方法
查看>>
Centos7:Failed to start LSB: Bring up/down networking
查看>>
小程序中模板的使用
查看>>
chrome启动参数之
查看>>
MySql(十八):MySql架构设计——高可用设计之 MySQL 监控
查看>>
关于springmvc的helloworld的压测报告
查看>>
ASP.NET Session丢失问题原因及解决方案[转]
查看>>
Win7 隐藏的功能介绍:问题步骤记录器
查看>>
电子书下载:The Rails 3 Way, 2nd Edition
查看>>
pmwiki 安装和基本配置
查看>>
电子书下载:ASP.NET 4.0 in Practice
查看>>
CS 系统框架二
查看>>
开放产品开发(OPD):OPD框架
查看>>
【Java】操作Sqlite数据库
查看>>
做好PM的几个要素
查看>>
Flex通过Blazeds利用Remoteservice与后台java消息推送
查看>>
Vim的使用 区域选择
查看>>