📄 main.java.bak
字号:
package stat;
/**
* <p>Title: sms_statistics</p>
* <p>Description: 短信服务平台计费统计程序</p>
* <p>Copyright: Copyright (c) 2002</p>
* <p>Company:
* </p>
* @author rjz@weathercn.com
* @version 1.0
*/
public class Engine extends Thread
{
//引擎状态
// ------------------------------------------------
public final static int THREAD_ACCELERATE = 0;
public final static int THREAD_RUNNING = 1;
public final static int THREAD_DECELERATE = 2;
public final static int THREAD_STOPPED = 3;
public String engineName;
//引擎状态
public int m_nStatus = THREAD_STOPPED;
public Engine(String strName)
{
super(strName);
this.engineName=strName;
this.setDaemon(true);
}
public boolean isRunning()
{
if(m_nStatus == THREAD_RUNNING)
{
return true;
}
return false;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -