zoukankan      html  css  js  c++  java
  • test2-11

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;

    namespace Test2_11
    {
    class Animal
    {
    private bool m_sex;
    private string m_sound;
    public Animal()
    {
    m_sex = false;
    m_sound="HOW1...";
    }
    public bool Sex
    {
    get { return m_sex; }
    set { m_sex = value; }
    }
    public string Sound
    {
    get { return m_sound; }
    set { m_sound = value; }
    }
    public virtual string Roar()
    {
    return m_sound;
    }

    }
    class Dog:Animal
    {
    public Dog()
    {
    Sex = true;
    Sound = "Wow...";
    }
    public override string Roar()
    {
    return "Dog:" + Sound;
    }
    }
    class Cat:Animal
    {
    public Cat()
    {
    Sound = "Miaow...";
    }
    public override string Roar()
    {
    return "Cat:" + Sound;
    }
    }
    class Cow:Animal
    {
    public Cow()
    {
    Sound = "Moo...";
    }
    public override string Roar()
    {
    return "Cow:" + Sound;
    }
    }
    }

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;

    namespace Test2_11
    {
    class Program
    {
    static void Main(string[] args)
    {
    Animal animal = new Animal();
    Dog d = new Dog();
    Cat c = new Cat();
    Cow w = new Cow();
    animal = d;
    Console.WriteLine(animal.Roar());
    animal = c;
    Console.WriteLine(animal.Roar());
    animal = w;
    Console.WriteLine( animal.Roar());
    }
    }
    }

  • 相关阅读:
    函数宏实现循环左移
    函数宏判断小端
    Linux下32位与64位数据类型大小
    转:C语言嵌入式系统编程之软件架构篇
    转:详解大端小段模式
    time函数计算时间
    匈牙利命名法
    20131030
    20131029
    20131028
  • 原文地址:https://www.cnblogs.com/YuJiaJia/p/7507347.html
Copyright © 2011-2022 走看看