xlang
v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
std
Timer.xcs
浏览该文件的文档.
1
5
@Declare
6
class
Timer
{
10
Timer
();
11
20
void
schedule
(
TimerTask
task,
int
period,
int
count);
21
29
void
schedule
(
TimerTask
task,
int
period);
30
34
void
cancel
();
35
};
Timer
定时器类
Definition
BuiltinObjects.x:944
Timer.cancel
void cancel()
取消定时任务
Timer.schedule
void schedule(TimerTask task, int period)
安排定时任务
Timer.Timer
Timer()
构造函数
Timer.schedule
void schedule(TimerTask task, int period, int count)
安排定时任务
TimerTask
定时器任务类
Definition
BuiltinObjects.x:951
制作者
1.9.8