抽象方法实现多态___森林里的动物在快乐的生活

1.实现页面效果

2.创建基类或超类(父类)

1 namespace 森林里的小动物在快乐的生活
2 {
3    public abstract  class Animal//动物类
4     {
5        public abstract void Movement();//运动的方法
6     }
7 }

3.创建派生类(鱼子类)

namespace 森林里的小动物在快乐的生活
{
    public class Fish:Animal //派生类派生出基类
    {
        public override void Movement()//父类的方法
        {
            Console.WriteLine("鱼在水里游!");
        }
    }
}

4.创建派生类(狗子类)

 1 namespace 森林里的小动物在快乐的生活
 2 {
 3     public class Dog:Animal
 4     {
 5         public override void Movement()
 6         {
 7             Console.WriteLine("狗在地上跑!");
 8         }
 9     }
10 }

5.创建派生类(鸟子类省略)

6.Main方法

 1 namespace 森林里的小动物在快乐的生活
 2 {
 3     class Program
 4     {
 5         static void Main(string[] args)
 6         {
 7             Console.WriteLine("森林里的小动物在快乐的生活!");
 8             Console.WriteLine();
 9             Animal father = new Bird();
10             Animal father2 = new Dog();
11             Animal father3 = new Fish();
12             father3.Movement();
13             father2.Movement();
14             father.Movement();
15             Console.ReadLine();
16         }
17     }
18 }

 

转载于:https://www.cnblogs.com/WuXuanKun/p/5441755.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值