2012年6月7日木曜日

開発環境

  • Microsoft Windows 7 Home Premium (OS)
  • Microsoft Visual C# 2010 Express Edition (IDE)
  • 言語: C#

『初めてのC# 第2版』(Jesse Liberty+Brian MacDonald著、日向俊二訳、オライリー・ジャパン、2006年、ISBN978-487311-294-7)の 第11章(継承とポリモーフィズム)10.9(練習問題)、練習11-3を解いてみる。

練習11-3.

コード

using System;

namespace Sample
{
    public abstract class Telephone
    {
        protected string phonetype;
        public abstract void Ring();
    }

    public class ElectronicPhone : Telephone
    {
        public ElectronicPhone()
        {
            this.phonetype = "Digital";
        }
        public override void Ring()
        {
            Console.WriteLine("Ringing tye {0}. Pipi, Pipi.", phonetype);
        }
    }
    public class TalkingPhone : Telephone
    {
        public TalkingPhone()
        {
            this.phonetype = "Talking";
        }
        public override void Ring()
        {
            Console.WriteLine("Ringing the {0}. Talking.", phonetype);
        }
    }
    class Tester
    {
        public void Run()
        {
            ElectronicPhone ep = new ElectronicPhone();
            TalkingPhone tp = new TalkingPhone();
            ep.Ring();
            tp.Ring();
        }
        static void Main()
        {
            Tester t = new Tester();
            t.Run();
        }
    }
}

入出力結果(Console Window)

Ringing tye Digital. Pipi, Pipi.
Ringing the Talking. Talking.
続行するには何かキーを押してください . . .

0 コメント:

コメントを投稿