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

java 继承

时间:2019-05-25 11:20:22      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:end   extend   rri   public   方法   nbsp   ring   color   span   

public class A {

    int x = 200;

    public void hello() {
        System.out.println("hello");
    }

    //子类也定义了a,和sys
    int a = 10;

    public void sys() {
        System.out.println("我是父类中的方法");
    }
}
public class B extends A {

    int a = 20;

    @Override
    public void sys() {
        System.out.println(a);
    }
    
    public void foo() {
        super.sys();
        System.out.println(super.a);
    }
    
    public static void main(String[] args) {
        //自身的属性,方法
        B b =     new B();
        b.sys();                  
        System.out.println(b.a); 
        
        //继承的属性,方法, 先从自身去找,没有找到就到父类去找
        b.hello();
        System.out.println(b.x); 
        
        //调用父类的属性和方法(super)
        b.foo();
        
    }
}

 

java 继承

标签:end   extend   rri   public   方法   nbsp   ring   color   span   

原文地址:https://www.cnblogs.com/moris5013/p/10921739.html

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