通俗一点:如果你看到一张钞票,然后——this是钞票,supper是纸张。

解决方案 »

  1.   

    同意楼上 this就是你自己 supper就是你老爹...
      

  2.   

    Class A{
       public void do(){
        //do something
    }
       public void ta(){
             this.do();
    }
    }
    Class B extends A{
        public void bb(){
              this.do();
    }
        public void tb(){
            super.ta();
    }
    }B b=new B();
    b.bb();
    b.tb();//the same result;
      

  3.   

    通俗一点:如果你看到一张钞票,然后——this是钞票,supper是纸张。
     对且好!
      

  4.   

    this    指类本身
    super   指继承的父类
      

  5.   

    哦,明白点了,就是说this指子类,super是父类对吧