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();
            }
        }
    }

  • 相关阅读:
    idea找不到或无法加载主类
    Scala核心编程_第09章 面向对象编程(高级特性)
    spring源码:学习线索
    Redis
    spring源码:Aware接口
    spring源码:核心组件(li)
    java socket编程
    spring源码:ApplicationContext的增强功能(li)
    spring源码:web容器启动
    spring源码:BeanPostProcessor(li)
  • 原文地址:https://www.cnblogs.com/cuipengfei/p/1264829.html
Copyright © 2011-2022 走看看