exthread.java

来自「J2ME手机游戏开发技术详解随书光盘」· Java 代码 · 共 56 行

JAVA
56
字号
package exframework;

/**
 * <p>Title: ExFramework</p>
 *
 * <p>Description: lizhenpeng</p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: LP&P</p>
 *
 * @author lipeng
 * @version 1.0
 */
public class ExThread
  extends Thread implements AllAction
{
  String name;
  volatile boolean isRunning;
  public ExThread(String name)
  {
   this.name = name;
   isRunning =true;
  }

  public void allAction(MainForm form)
  {
    try
    {
      ExThread thread=new ExThread("1:");
      System.out.println("start");
      thread.start();
      for(int i = 0;i<1000;i++);
      System.out.println("interrupt");
      thread.stop();
      System.out.println("stop");
    }
    catch(Exception e)
    {
      System.out.println(e);
    }
  }
  public void stop()
  {
    isRunning = false;
  }
  public void run()
  {
    int i=0;
    while(isRunning)
    {
      System.out.println(name+i++);
    }
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?