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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

//class Fruit {
        private String name;                                //        水果名
        private String taste;                                //水果味道
        private String producingArea;                //水果产地
        public Fruit(){}
        public Fruit(String name,String taste,String producingArea){
                this.name=name;
                this.taste=taste;
                this.producingArea=producingArea;
        }
               
        public void setName(String name) {
                this.name = name;
        }
        public String getName(){
                return name;
        }
        public void setTaste(String taste){
                this.taste=taste;
        }
        public String getTaste(){
                return taste;
        }
        public void setProducingArea(String producingArea){
                this.producingArea=producingArea;
        }
        public String getProducingArea(){
                return producingArea;
        }
        public void show(){
                System.out.println("水果名:"+name+"\n产地:"+producingArea+"\n味道:"+taste);
        }

}
class Sweet extends Fruit {
        public Sweet(){}
        public Sweet(String name,String taste,String producingArea){
                super(name,taste,producingArea);
        }
       
       
}
class DemoApple {
        public static void main(String[] args) {
                Sweet  a = new Sweet("苹果","酸的","四川");
                        a.show();
                System.out.println("---------------------");
                Sweet a2 = new Sweet();
                a2.setName("草莓");
                a2.setTaste("酸");
                a2.setProducingArea("马来西亚");
                System.out.println("产地:"+a2.getProducingArea()+"\n水果名:"+a2.getName()+"\n口味:"+a2.getTaste());
        }
}

3 个回复

倒序浏览
基础学的还可以哦~
回复 使用道具 举报
唐彬 发表于 2015-11-8 23:33
基础学的还可以哦~

嘿嘿 过奖了
回复 使用道具 举报
唐彬 发表于 2015-11-8 23:33
基础学的还可以哦~

嘿嘿,过奖了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马