zoukankan      html  css  js  c++  java
  • 程序设计: 猫大叫一声,所有的老鼠都开始逃跑,主人被惊醒。(C#语言)

    10. 程序设计: 猫大叫一声,所有的老鼠都开始逃跑,主人被惊醒。(C#语言) 要求: 1.要有联动性,老鼠和主人的行为是被动的。 2.考虑可扩展性,猫的叫声可能引起其他联动效应。 public interface Observer { void Response(); //观察者的响应,如是老鼠见到猫的反映 }

    public interface Subject { void AimAt(Observer obs); //针对哪些观察者,这里指猫的要扑捉的对象---老鼠 }

    public class Mouse : Observer {

    private string name;

    public Mouse(string name, Subject subj) { this.name = name; subj.AimAt(this); }

    public void Response() { Console.WriteLine(name + attempt to escape!); }

    }

    public class Master : Observer {

    public Master(Subject subj) { subj.AimAt(this); }

    public void Response() { Console.WriteLine(Host waken!); }

    }

    public class Cat : Subject {

    private ArrayList observers;

    public Cat() { this.observers = new ArrayList(); }

    public void AimAt(Observer obs) { this.observers.Add(obs); }

    public void Cry() {

    Console.WriteLine(Cat cryed!);

    foreach (Observer obs in this.observers) { obs.Response(); }

    }

    }

    class MainClass {

    static void Main(string[] args)

    {

     Cat cat = new Cat();

    Mouse mouse1 = new Mouse(mouse1, cat);

    Mouse mouse2 = new Mouse(mouse2, cat);

    Master master = new Master(cat);

    cat.Cry();

    }

    }

  • 相关阅读:
    hdu 2112 (最短路+map)
    poj 1502 最短路+坑爹题意
    poj 1696 Space Ant (极角排序)
    poj 1410 线段相交判断
    使用本地光盘安装Microsoft .NET Framework 3.5 for Win8.1/WinServer2012R2
    Excel REPT函数使用
    tomcat7配置虚拟目录
    Tomcat 7.0的配置
    js去除空格
    JAVABEAN连接各数据库
  • 原文地址:https://www.cnblogs.com/yuanws/p/2216598.html
Copyright © 2011-2022 走看看