zoukankan      html  css  js  c++  java
  • 适配器模式

    2008年08月10日 星期日 下午 05:57

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace ConsoleApplication1
    {
        abstract class Birds
        {
            public abstract void Fly();

            public abstract void Shout();
        }

        class Duck:Birds
        {
            public override void Fly()
            {
                Console.WriteLine("鸭子飞");
            }

            public override void Shout()
            {
                Console.WriteLine("鸭子叫唤");
            }
        }

        class Chick:Birds
        {
            public override void Fly()
            {
                Console.WriteLine("小鸡飞");
            }

            public override void Shout()
            {
                Console.WriteLine("小鸡飞");
            }
        }

        class Adapter:Birds
        {
            private Eagle eagle=new Eagle();

            public override void Fly()
            {
                eagle.Fly();
            }

            public override void Shout()
            {
                eagle.Shout();
            }
        }

        class Eagle
        {
            public void Fly()
            {
                Console.WriteLine("老鹰飞");
            }

            public void Shout()
            {
                Console.WriteLine("老鹰叫唤");
            }
        }

        class Client
        {
            public static void Main()
            {
                Birds b = new Duck();
                b.Fly();
                b.Shout();
                b = new Chick();
                b.Fly();
                b.Shout();
                b = new Adapter();
                b.Fly();
                b.Shout();
                Console.Read();
            }
        }
    }

  • 相关阅读:
    slice,substr和substring的区别
    http请求方法
    Git常用命令
    IOS开发之NSLog使用技巧
    网络请求之get与post异步请求
    通知(广播)传值
    [转]->ios推送:本地通知UILocalNotification
    [转]iOS 不要使用tag传递TableViewCell的indexPath值
    UIWebView uiwebview 加载本地html
    [转]字符串编码转换
  • 原文地址:https://www.cnblogs.com/cuipengfei/p/1264829.html
Copyright © 2011-2022 走看看