C#:继承之构造方法

一、子类继承父类构造方法

演示:在各个子类中编写各自的构造方法,使用 base 关键字传值给父类。

父类:

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

namespace one
{
    /// <summary>
    /// NPC的类型枚举
    /// </summary>
    enum NPCType
    {
        Task,Shop
    }
    abstract class NPC
    {
        private string name;
        private NPCType type;
        public string Name
        {
            get { return name; }
            set { name = value; }
        }
        public NPCType Type
        {
            get { return type; }
            set { type = value; }
        }
        public NPC(string name,NPCType type)
        {
            this.name = name;
            this.type = type;
        }
        public abstract void Speak();
    }
}

子类:

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

namespace one
{
    class ShopNPC:NPC
    {
        private string item;
        public ShopNPC(string item,string name,NPCType type)
            :base(name,type)
        {
            this.item = item;
        }

        public override void Speak()
        {
            Console.WriteLine("NPC{0},贩卖{1}商品", base.Name, item);
        }
    }
}

备注:在实际开发中,一般情况下只会实例化子类的对象,因为子类才是具体的事物,父类是子类公共数据的向上抽象。

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值