Functions.Seconds 方法 | |
返回自午夜以来经过的秒数。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION Seconds() AS REAL8
public static double Seconds()
查看代码返回值
类型:
Double
自午夜以来经过的秒数,以 seconds.hundredths 形式表示。数字范围为 0 到 86,399。
备注
Seconds() 提供了一种简单的方法来计算程序执行期间的经过时间,基于系统时钟。
它与 Time() 函数相关,后者返回以 hh:mO:ss 形式表示的系统时间。
最小分辨率取决于硬件定时器的滴答声。
示例
此示例对比 Time() 与 Seconds() 的值:
此示例使用 Seconds() 跟踪经过的时间(秒):
1LOCAL nStart, nElapsed AS FLOAT
2nStart := Seconds()
3.
4. <paramref name="Statements" />
5.
6nElapsed := Seconds() - nStart
7? "经过的时间: " + NTrim(nElapsed) + " 秒"
参见