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());
    }
    }
    }

  • 相关阅读:
    day 15 小结
    python中的数据类型以及格式化输出
    编程语言简介
    计算机简介
    堆排
    Lock锁
    JVM入门
    Java中反射调用私有方法出现NoSuchMethodException
    1248. 统计「优美子数组」
    注解
  • 原文地址:https://www.cnblogs.com/YuJiaJia/p/7507347.html
Copyright © 2011-2022 走看看