2012年3月1日木曜日

開発環境

  • 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)の第14章(ジェネリックとコレクション)の14.6(練習問題)、練習14-3.を解いてみる。

練習14-3.

StackはFILO(First In Last Out)、QueueはFIFO(First In First Out

コード

using System;
using System.Collections.Generic;

public abstract class Animal : IComparable<Animal>
{
    private int weight;
    private string name;
    public Animal(int weight, string name)
    {
        this.weight = weight;
        this.name = name;
    }
    public abstract void Speak();
    public abstract void Move();
    public override string ToString()
    {
        return "Name: " + name + ", Weight: " + weight;
    }
    public int CompareTo(Animal rhs)
    {
        return this.weight.CompareTo(rhs.weight);
    }
}

public class Cat : Animal
{
    public Cat(int weight, string name) :
        base(weight, name) { }
    public override void Speak()
    {
        Console.WriteLine("ニャーニャー");
    }
    public override void Move()
    {
        Console.WriteLine("するする");
    }
}

public class Dog : Animal
{
    public Dog(int weight, string name) :
        base(weight, name) { }
    public override void Speak()
    {
        Console.WriteLine("ワンワン");
    }
    public override void Move()
    {
        Console.WriteLine("てくてく");
    }
}

class Tester
{
    public void Run()
    {
        Cat tama = new Cat(10, "Tama");
        Cat sora = new Cat(20, "Sora");
        Dog pochi = new Dog(15, "Pochi");
        Dog taro = new Dog(25, "Taro");
        Animal[] animals = { tama, sora, pochi, taro };
        Console.WriteLine("動物の配列");
        foreach (Animal animal in animals)
        {
            Console.WriteLine(animal.ToString());
            /* animal.Speak();
            animal.Move(); */
        }
        Stack<Animal> animalStack = new Stack<Animal>();
        Queue<Animal> animalQueue = new Queue<Animal>();
        foreach (Animal animal in animals)
        {
            animalStack.Push(animal);
            animalQueue.Enqueue(animal);
        }
        Console.WriteLine("動物のStack");
        foreach (Animal animal in animalStack)
        {
            Console.WriteLine(animal.ToString());
            /* animal.Speak();
            animal.Move();*/
        }
        Console.WriteLine("動物のQueue");
        foreach (Animal animal in animalQueue)
        {
            Console.WriteLine(animal.ToString());
            /* animal.Speak();
            animal.Move(); */
        }
    }
    static void Main()
    {
        Tester t = new Tester();
        t.Run();
    }
}

入出力結果(Console Window)

動物の配列
Name: Tama, Weight: 10
Name: Sora, Weight: 20
Name: Pochi, Weight: 15
Name: Taro, Weight: 25
動物のStack
Name: Taro, Weight: 25
Name: Pochi, Weight: 15
Name: Sora, Weight: 20
Name: Tama, Weight: 10
動物のQueue
Name: Tama, Weight: 10
Name: Sora, Weight: 20
Name: Pochi, Weight: 15
Name: Taro, Weight: 25
続行するには何かキーを押してください . . .

本書の問題はすらすら解けるようになってきたしJavaScript、jQueryの学習も進めているので、C#とJavaScriptを組み合わせた、ASP.NET Ajaxの学習も開始することに。レンタルしている共用サーバーも放置状態なので。

合わせて読んでいる書籍。

  1. 独習 ASP.NET 第3版 山田 祥寛 (著)
  2. 正規表現の理解を深めるために本書に加えて著Jeffrey E. F. Friedl著, 株式会社ロングテール/長尾 高弘訳 『詳説 正規表現 第3版』(オライリー・ジャパン発行)もあわせて読む。
  3. C#の理解を深めるために本書に加えてProgramming C# 3.0, Fifth Edition, by Jesse Liberty and Donald Xie. Copyright 2008 O'Reilly Meia, Inc., 978-9-596-52743-3 (邦題『プログラミングC# 第5版』オライリー・ジャパン刊、978-4-87311-396-8)を読む。
  4. さらにC#を楽しみながら理解するためにHead First C# ―頭とからだで覚えるC#の基本 Andrew Stellman (著), Jennifer Greene (著), 佐藤 嘉一 (監修), 木下 哲也 (翻訳)

0 コメント:

コメントを投稿