9. สร้างใหม่จากเก่า

The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by downloading here.

 
รหัสที่ 9-8  โปรแกรมแสดงตัวนับที่ใช้อ็อบเจกต์ของ IntegerLEDWindow
import jlab.graphics.DWindow;

public class Counter {
  public static void main(String[] args) {
    IntegerLEDWindow c = new IntegerLEDWindow(4, 50);
    c.setValue(0);
    c.setRepaintDuringSleep(true);
    while (true) {
      c.clearBackground();
      c.setValue((c.getValue()+1)%1000);
      c.sleep(100);
    }
  }
}
©2009 S.Prasitjutrakul