码迷,mamicode.com
首页 > 其他好文 > 详细

抽象类的使用

时间:2014-07-27 23:05:59      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:使用   ar   line   new   a   rac   3   public   

抽象类:
1、如果一个类中有抽象方法,那么这个类必须是抽象类
2、抽象类中可以有抽象方法,也可以没有抽象方法
3、抽象类不能被实例化
4、抽象类不能是密封类或静态类

子类(普通子类)必须重写父类中的所有抽象方法,
如果子类是抽象类可以不用重写父类的抽象方法。

 

//抽象类

abstract class Animal
    {
        public abstract void Sound();
    }

 

class Cat:Animal
    {
        public override void Sound()
        {
            Console.WriteLine("喵喵喵");
        }
    }

class Dog:Animal
    {
        public override void Sound()
        {
            Console.WriteLine("汪汪汪");
        }
    }

 

class Duck:Animal
    {
        public override void Sound()
        {
            Console.WriteLine("嘎嘎嘎");
        }
    }

//子类是抽象类,可以不重写父类的抽象方法
    abstract class AbstractClass:Animal
    {
    }

class Program
    {
        static void Main(string[] args)
        {
            Animal animal = new Dog();
            animal.Sound();
            animal = new Cat();
            animal.Sound();
            animal = new Duck();
            animal.Sound();
        }
    }

抽象类的使用,布布扣,bubuko.com

抽象类的使用

标签:使用   ar   line   new   a   rac   3   public   

原文地址:http://www.cnblogs.com/danmao/p/3871795.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!