码迷,mamicode.com
首页 > 其他好文 > 详细

方法是动态绑定的,属性是静态绑定的

时间:2014-09-05 18:17:01      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:des   style   io   java   ar   2014   div   sp   on   



package com.test;
/**
 * @FileName    : B.java
 * @Description : 复习下:帮助你理解方法是动态绑定,属性是静态绑定的
 * @Copyright   : PowerData Software Co.,Ltd.Rights Reserved
 * @Company     : XXXXX
 * @author      : 星辰
 * @version     : 1.0
 * Create Date  : 2014-9-5 下午04:57:24
 *
 */
class AA {
 protected int a = 2;
 protected static int b = 2;
 static void method1() {
  System.out.println("A.method1()");
 }

 void method2() {
  System.out.println("A.method2()");
 }
}

public class B extends AA {
 protected int a = 3;
 protected static int b = 3;
 // will not override A.method1()
 static void method1() {
  System.out.println("B.method1()");
 }

 // will override the A. method2()
 void method2() {
  System.out.println("B.method2()");
 }

 public static void main(String[] args) {
  AA a = new B();
  System.out.println("b:" + a.b);//2
  System.out.println("a:" + a.a);//2
  a.method1();//
  a.method2();
 }
 // //因为A里面的method1是static,编译时就静态绑定了,所以输出 A.method1搜索() a.method2();
 // //而method2()不是static方法,a是由B
 // new出来的,执行的时候会执行new它的那个类的method2()方法,所以输出B.method2(),这是java的多态性 }}
}



================结果:

b:2
a:2
A.method1()
B.method2()

方法是动态绑定的,属性是静态绑定的

标签:des   style   io   java   ar   2014   div   sp   on   

原文地址:http://blog.csdn.net/chx10051413/article/details/39082867

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