Java基础系列 - 子类继承父类,调用父类的构造函数

Posted smartsmile

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java基础系列 - 子类继承父类,调用父类的构造函数相关的知识,希望对你有一定的参考价值。

package com.test7;

public class test7 
    public static void main(String[] args) 
        Son son = new Son(1000, "张三");
        /**
         * 打印显示
             Father的构造函数1000 张三
             Son的构造函数1000 张三
         */
    


class Father 
    private int userId;
    private String userName;

    public Father(int userId, String userName) 
        System.out.println("Father的构造函数" + userId + " " + userName);
        this.userId = userId;
        this.userName = userName;
    


class Son extends Father 
    /**
     * 子类中调用父类的构造函数
     *
     * @param userId
     * @param userName
     */
    public Son(int userId, String userName) 
        super(userId, userName);
        System.out.println("Son的构造函数" + userId + " " + userName);
    

  

以上是关于Java基础系列 - 子类继承父类,调用父类的构造函数的主要内容,如果未能解决你的问题,请参考以下文章

关于java中子类继承父类的构造方法

学习大数据:Java基础篇之继承

学习大数据:Java基础篇之继承

子类可以继承父类的啥

子类可以继承父类的啥

为啥java的子类中必须调用父类的构造方法