📄 exthread.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 + -