pb:定时函数

定时函数

1、CPU()

功  能:得到自当前应用程序启动后开始CPU所消耗的时间,以毫秒为单位。

语  法:CPU()

返回值:Long。返回自当前应用程序启动后开始CPU所消耗的时间,以毫秒为单位。

示  例:These statements determine the amount of CPU time that elapsed while a group of statements executed:

// Declare ll_start and ll_used as long integers.

long ll_start, ll_used

// Set the start equal to the current CPU usage.

ll_start = Cpu()

... // Executable statements being timed

// Set ll_used to the number of CPU seconds

// that were used (current CPU time - start).

ll_used = Cpu() - ll_start

2、Idle()

功  能:该函数在用户每次活动(例如,按键盘、移动鼠标等)后重置定时器,n秒后触发应用对象的Idle事件。

语  法:Idle ( n )

参  数:n:指定空闲时间间隔,以秒为单位。该参数的值设置为0时,停止空闲检测,不再触发应用对象的Idle事件。

返回值:Integer。函数执行成功时返回1,此时启动定时器。如果不能启动定时器或定时器未

你可能感兴趣的:(PowerBuilder,powerbuilder,pb)