黑马程序员技术交流社区

标题: Java大神、小妖,面试题来了 [打印本页]

作者: abian    时间: 2013-8-1 13:31
标题: Java大神、小妖,面试题来了
  1. public class A {


  2. static class R{

  3. void t(){
  4. System.out.println("R.t");
  5. }

  6. public R() {
  7. System.out.println("R before");
  8. t();
  9. System.out.println("R after");
  10. }
  11. }

  12. static class Rr extends R{


  13. private int n = 1;
  14. void t(){
  15. System.out.println("Rr.t");
  16. System.out.println("Rr.n : " + this.n);
  17. }

  18. public Rr(int n) {
  19. System.out.println("Rr before");
  20. this.n = n;
  21. System.out.println("Rr.n : " + this.n);
  22. System.out.println("Rr after");
  23. }
  24. }

  25. public static void main(String[] args) {

  26. new Rr(3);
  27. }
  28. }
复制代码
R before
Rr.t
Rr.n : 0
R after
Rr before
Rr.n : 3
Rr after

1、解释一下输出过程?

2、为什么黑色粗体能执行n的值是0?Rr的t为什么可以在Rr的初始化方法前执行?



作者: 一直有你    时间: 2013-8-1 20:05
我对这一块也有点迷糊,求大神帮忙给具体解释一下。谢啦!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2