ExThread.java
资源名称:J2ME&Game.rar [点击查看]
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:
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++);
- }
- }
- }