码迷,mamicode.com
首页 > 其他好文 > 详细

适配器模式

时间:2014-06-11 08:04:50      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   http   ext   color   

类的适配器模式

bubuko.com,布布扣

class CIntegerSortAdapter:DoubleSort,Sortable

    {

        public int[] Sort(int[] number)

        {

            double[] dnum = new double[number.Length];

            int[] inum = new int[number.Length];

            for (int i = 0; i < number.Length; i++)

            {

                dnum[i] = number[i] * 1.0;

            }

            dnum = this.Sort(dnum);

            for (int i = 0; i < dnum.Length; i++)

            {

                inum[i] = (int)dnum[i];

            }

            return inum;

        }

    }

对象的适配器模式

bubuko.com,布布扣

class OIntegerSortAdapter:Sortable

    {

        private DoubleSort doubleSort = new DoubleSort();

        public int[] Sort(int[] number)

        {

            double[] dnum = new double[number.Length];

            int[] inum = new int[number.Length];

            for (int i = 0; i < number.Length; i++)

            {

                dnum[i] = number[i] * 1.0;

            }

            dnum = doubleSort.Sort(dnum);

            for (int i = 0; i < dnum.Length; i++)

            {

                inum[i] = (int)dnum[i];

            }

            return inum;

        }

    }

 

适配器模式将一个类的接口转换成客户希望的另外一个接口。Adapter模式使得原本由于接口不兼容而不能一起工作的那些类可以在一起工作。适配器模式复用了已有的类,体现了代码的重用性。将目标类和适配者类解耦,通过引入一个适配器类重用现有的适配者类,而无需修改原有代码。

适配器模式,布布扣,bubuko.com

适配器模式

标签:style   class   blog   http   ext   color   

原文地址:http://www.cnblogs.com/ojm52pk/p/3773223.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!