Rexx - TIME() 方法

此方法返回 24 小时制格式的本地时间,如以下程序所示。

hh:mm:ss (hours, minutes, and seconds) 

语法

TIME(options)

参数

Options − 这是用于格式化时间值的选项。 它们可以是以下选项中的任何一个 −

  • Civil − 此参数以 () 格式返回时间,其中 hh 为小时,mm 为分钟,xx 为秒

  • Elapsed − 此参数返回自运行时间时钟启动或重置以来的秒数和微秒数

  • Full − 此参数返回自 0001 年 1 月 1 日起的微秒数

  • Hours − 此参数返回自午夜以来经过的小时数

  • Minutes − 该参数返回自午夜以来经过的分钟数

  • Normal − 该参数以默认格式 hh:mm:ss 返回时间

  • Offset − 此参数返回本地时间相对于 UTC 的微秒偏移量。

返回值

此方法返回 24 小时制格式的本地时间 − hh:mm:ss (hours, minutes, and seconds).

示例

/* 主程序 */
say TIME() 
say TIME("C") 
say TIME("H")

当我们运行上面的程序时,我们将得到以下结果。 这取决于系统上的当前时间。

以下程序只是一个示例。

输出

10:54:12 
10:54am 
10 

❮ rexx_built_in_functions.html