2012年9月5日水曜日

開発環境

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

その他参考書籍

練習11-3.

コード

using System;

abstract class Telephone
{
    protected string phonetype;
    public Telephone()
    {
        this.phonetype = "Telephone";
    }
    public abstract void Ring();
}

class ElectronicPhone : Telephone
{
    public ElectronicPhone()
    {
        this.phonetype = "Digital";
    }
    public override void Ring()
    {
        Console.WriteLine("Ringing th {0}. Pipi, Pipi.", phonetype);
    }
}

class TalkingPhone : Telephone
{
    public TalkingPhone()
    {
        phonetype = "Talking";
    }
    public override void Ring()
    {
        Console.WriteLine("Ringing the {0}. Talking.", phonetype);
    }
}

class Tester
{
    public void Run()
    {
        TalkingPhone tp = new TalkingPhone();
        ElectronicPhone ep = new ElectronicPhone();
        Telephone[] tels = { tp, ep };
        foreach (Telephone item in tels)
        {
            Console.WriteLine(item);
            item.Ring();
        }
    }
    static void Main()
    {
        Tester t = new Tester();
        t.Run();
    }
}

入出力結果(Console Window)

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

0 コメント:

コメントを投稿