首页 > 编程语言 > 详细

Java学习(九)

时间:2016-06-24 23:40:25      阅读:420      评论:0      收藏:0      [点我收藏+]

·类和对象的扩展

class Human {
    String name;
    int age;
    Human(){}
    Human(String name,int age){
        this.name = name;
        this.age = age;
    }
    viod walk(){
        System.out.println(name + "慢慢走");
    }
}

class Child extends Human{
    String schoolName;
    Child(String name,int age,String school){
        super(name,age);
        this.schoolName = school;
        }
        void study(){
            System.out.println(name + "写数学作业");
        }
        void walk(){
            System.out.println(name + "蹦蹦跳跳地走");
        }
    }
}

public class Demo3{
    public static void main(String[] args){
        Human h = new Human("小明爸爸",35);
        h.walk();
        Child c = new Child("小明",8,"实验小学");
        c.study();
        c.walk();
    }
}
·用记事本更改编码方式后,仍然出现问题技术分享

 

Java学习(九)

原文:http://www.cnblogs.com/sheril/p/5615545.html

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