A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 余攀 高级黑马   /  2013-3-7 13:36  /  1324 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 余攀 于 2013-3-8 21:34 编辑

定义一个父类,有姓氏字段,然后定义孩子类,那么如何调用父类构造函数给子类字段赋值呢

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

2 个回复

倒序浏览
个人理解 是想这样吗?
public class Father
    {
        //成员变量
        protected string firstName;
        protected int wealth;
        protected char blood;
        //构造函数
        public Father(string _firstName, int _wealth, char _blood)
        {
            this.firstName = _firstName;
            this.wealth = _wealth;
            this.blood = _blood;
        }
    }
    //子类 继承
    public class Son : Father
    {
        //子类成员变量
        public string PlayGame;
        //调用父类构造函数
        public Son(string _firstName, int _wealth, char _blood, string _PlayGame) :
            base(_firstName,_wealth,_blood)
        {
            this.PlayGame = _PlayGame;

        }
        public void aa() //方法
        {
            Console.WriteLine("我姓{0},财产有{1}元,血型是{2},我会玩{3}",this.firstName,this.wealth,this.blood,this.PlayGame);
        }
    }
    class Program
    {      
        static void Main(string[] args)
        {
            Son son = new Son("史",0,'a',"连连看");//创建子类对象
            son.aa();//调用方法
            Console.ReadKey();
        }
    }

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

回复 使用道具 举报
史金阳 发表于 2013-3-7 13:57
个人理解 是想这样吗?
public class Father
    {

嗯,我也这样理解,应该没错
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马