首页 > Windows开发 > 详细

C#结构函数与base关键字

时间:2015-05-22 23:55:30      阅读:349      评论:0      收藏:0      [点我收藏+]
 //声明父类
    class ProductsFather
    {
        public double Price
        {
            get;
            set;
        }
        public int Count
        {
            get;
            set;
        }
        public string Id
        { get; 
            set; }

        //给字段赋值 c#结构函数
        public ProductsFather(double price, int count, string id)
        {
            this.Price = price;
            this.Count = count;
            this.Id = id;
        }


    }
  class Xiangjiao:ProductsFather
    {
        public Xiangjiao(double pirce, int count, string id)
            : base(pirce, count, id)
        { 

        }
    }

 

C#结构函数与base关键字

原文:http://www.cnblogs.com/zywf/p/4523425.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!