码迷,mamicode.com
首页 > 编程语言 > 详细

Java学习(九)

时间:2016-06-24 23:42:45      阅读:401      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!