this指的是myImage是否被更新,你不必关心
  
  PS: I think u r MM, so i answered this question.
Welcome if i am on line.

解决方案 »

  1.   

    this是指本身类的一个引用,比如:
    public class Test extends Thread
    {
      private int t;
      public Test(int t)
      { 
        this.t=t;//这里的this是本身类的一个引用,是类Test的一个引用 
      }
     
    }
      

  2.   

    这里的this,应该是一AWT构件的引用。AWT构件都可作为图像观察者,用来监视image加载的进展状况。当它发现图像被完全加载时,就从新绘制自己,paint()被调用,再次调用drawImage(..)
    进行重绘。
      

  3.   

    回复人:dolphin1476(鱼鱼鱼) (2001-4-26 8:59:00)  得0分 
      this指的是myImage是否被更新,你不必关心
      
      PS: I think u r MM, so i answered this question.
    Welcome if i am on line.  
    why?