⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exthread.java

📁 < J2ME手机游戏开发技术详解>>上的全部源码,包括实现中需要的相关图片
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -