码迷,mamicode.com
首页 > 移动开发 > 详细

java4android (继承 初步认识)

时间:2014-05-17 22:58:32      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   class   code   c   

什么是继承?

在面向对象中,继承就是一个类得到了另外一个类当中的成员变量和成员方法。

Java当中只支持单继承,不允许多继承

 

使用继承是为了减少重复代码,并且易于修改

 举例:

父类Person3

bubuko.com,布布扣
class Person3{
    String name;
    int age;
    
    void eat(){
        System.out.print("吃饭");
    }
    
    void introduce(){
        System.out.print("我的名字是"+name+",我的年龄是"+age);
    }
}
bubuko.com,布布扣

子类 Student

bubuko.com,布布扣
class Student extends Person3{
    //extends 继承;扩展  Student子类 得到了 Person3父类 中的成员函数和成员变量
    
    //子类可以加入自己特有的成员变量和成员函数
    
    int grade;
    
    void study(){
        System.out.print("学习");
    }
}
bubuko.com,布布扣

主函数

bubuko.com,布布扣
class TextStudent{
    public static void main(String args[]){
        Student student = new Student();
        student.name  = "梨花";
        student.age = 19;
        
        student.eat();
        student.introduce();
        student.study();
    }
}
bubuko.com,布布扣

输出结果:
吃饭

我的名字是梨花,我的年龄是19

学习

 

 

java4android (继承 初步认识),布布扣,bubuko.com

java4android (继承 初步认识)

标签:android   style   blog   class   code   c   

原文地址:http://www.cnblogs.com/safiri/p/3734484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!