栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Java基础知识14:子类构造方法中有super()构造方法

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Java基础知识14:子类构造方法中有super()构造方法

package com.hiyo.HighClass;



class House {
    private String name ;
    private float price ;
    public House(){//父类的构造方法
        System.out.println("父类House中的构造方法!");
    }
    public void setName(String name) {
        this.name = name ;
    }
    public void setPrice(float price) {
        this.price = price ;
    }
    public String getName(){
        return this.name ;
    }
    public float getPrice() {
        return this.price ;
    }
}
class TownHouse extends House {
    public TownHouse(){
        //子类的构造方法相当于又一个super() ;
        super() ;//可以不写,结果一样
        System.out.println("子类的构造方法");
    }
    private String town ;
    public String getTown(){
        return this.town ;
    }
    public void setTown(String town) {
        this.town = town ;
    }
}
public class ExtendDemo2 {
    public static void main(String[] args) {
        TownHouse th = new TownHouse() ;
        th.setName("AA");
        th.setPrice(30000.00f);
        th.setTown("BB");
        System.out.println(th.getTown() + th.getName() + th.getPrice());
    }
}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/356301.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号