13.继承和多态的实例 C#

这是一个动物园的动物发出不同的声音,使用了继承和多态

cs 复制代码
using System;
using System.Collections.Generic;

namespace InheritanceAndPolymorphismExample
{
    //一个动物类,包含属性:名称。包含方法:发出叫声
    public class Animal
    {
        public string Name { get; set; }
        public virtual void Speak()
        {
            Console.WriteLine("The animal makes a sound.");

        }
    }

    //从动物类继承一个狗类,多态一个方法:狗叫
    public class Dog : Animal
    {
        public override void Speak()
        {
            Console.WriteLine("The dog says:Woof!");

        }
    }

    //从动物类继承一个猫类,多态一个方法:猫叫
    public class Cat : Animal
    {


        public override void Speak()
        {
            Console.WriteLine("The cat says:Meow!");

        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            //新建一个列表,叫动物们,对应的是animal类,并引入实例,狗猫动物
            List<Animal> animals = new List<Animal>
            {

                new Dog{Name="Buddy" },
                new Cat{Name="Whiskers"},
                new Animal{Name="Generic Animal" }

            };

            //从列表中读取,全部执行方法
            foreach (Animal animal in animals)
            {
                Console.WriteLine($"Animal:{animal.Name}");
                animal.Speak();
                Console.WriteLine();


            }
            Console.ReadLine();

        }
    }




}

输出结果:

cs 复制代码
The animal:Leo
The cat says:Meow!

The animal:Whiskers
The dog says:Woof!

The animal:Generic Animal
The Animal makes a sound.
相关推荐
练习&两年半3 小时前
C#速成(文件读、写操作)
开发语言·前端·c#
我是苏苏3 小时前
C#高级:Winform桌面开发中TreeView的基础例子
开发语言·c#
shi57833 小时前
设计模式之 桥接模式 C# 范例
设计模式·c#·桥接模式
boligongzhu4 小时前
.NET(C#) 如何配置用户首选项及保存用户设置
c#·.net
工业机器视觉设计和实现6 小时前
杨振宁大学物理视频中黄色的字,c#写程序去掉(原版改进,二)
c#·视频处理
普罗米修斯Aaron_Swartz6 小时前
C#中移位运算
开发语言·c#
wangnaisheng7 小时前
面向对象设计规则和各类设计模式
c#·开发模式
shi57837 小时前
设计模式之 装饰器模式 C# 范例
设计模式·c#·装饰器模式
吾与谁归in9 小时前
【C#设计模式(20)——观察者模式(Observer Pattern)】
观察者模式·设计模式·c#