Java 雙快取

nklixiujun發表於2009-03-21

import java.awt.*;
import java.applet.*;

public class HelloWorld extends Applet
{
private Image imgBuf;
private Graphics gBuf;
Thread lithread=null;
private int i=0;
public void init()
{
imgBuf=createImage(getSize().width,getSize().height);
gBuf=imgBuf.getGraphics();
gBuf.setColor(Color.black);
gBuf.fillRect(0,0,getSize().width,getSize().height);
gBuf.setColor(Color.white);
gBuf.drawLine(0,10,getSize().width-1,10);
gBuf.drawLine(0,30,getSize().width-1,30);
gBuf.drawLine(0,50,getSize().width-1,50);
gBuf.drawLine(0,70,getSize().width-1,70);
gBuf.drawLine(0,90,getSize().width-1,90);
gBuf.drawLine(0,110,getSize().width-1,110);
gBuf.drawLine(0,130,getSize().width-1,130);
gBuf.setColor(Color.red);
gBuf.drawRect(0,0,getSize().width-1,getSize().height-1);
}
public void start()
{
if(lithread==null)
{
lithread=new Thread();
lithread.start();
}
}
public void stop()
{
lithread=null;
}
public void paint(Graphics g)
{
g.drawImage(imgBuf,0,0,this);
gBuf.setColor(Color.black);
gBuf.fillRect(0,0,getSize().width,getSize().height);
gBuf.setColor(Color.white);
gBuf.drawLine(0,10,getSize().width-1,10);
gBuf.drawLine(0,30,getSize().width-1,30);
gBuf.drawLine(0,50,getSize().width-1,50);
gBuf.drawLine(0,70,getSize().width-1,70);
gBuf.drawLine(0,90,getSize().width-1,90);
gBuf.drawLine(0,110,getSize().width-1,110);
gBuf.drawLine(0,130,getSize().width-1,130);
gBuf.setColor(Color.green);
gBuf.drawRect(50-i,50-i,200-i,100-i);
try
{
lithread.sleep(1000);
}
catch(InterruptedException e)
{
}
i++;
repaint();

}
public void update(Graphics g)
{
paint(g);
}

}

雙快取技術:

影像閃爍的根本原因是當一幅影像顯示完需要花下一幅時,首先將螢幕用背景色清除,然後再畫下一幅,因此人們能看到背景色因此出現閃爍.

當一幅影像在顯示的時候,下一幅要顯示的影像已經在記憶體中寫好,因此,當需要下一幅時可以直接透過函式從記憶體中一次性獨到顯示區,由於從記憶體中讀出速度很快,所以看不到閃爍.

http://blog.chinaunix.net/u/18021/showart_1102572.html

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10897203/viewspace-1019179/,如需轉載,請註明出處,否則將追究法律責任。

相關文章