timerjob.java
来自「采用JAVA开发」· Java 代码 · 共 19 行
JAVA
19 行
/*
* Created on 2004-8-6
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.gctech.misc.other.time;
import java.util.Date;
//该接口描述了如何完成TimerTask,请参考TimerJobExample
interface TimerJob
{
public void execute();
public Date getNextExeDate();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?