In DateTime§

请参阅主要文档 上下文中的方法 now

method now(:$timezone = $*TZ:&formatter --> DateTime:D)

从当前系统时间创建一个新的 DateTime 对象。可以提供自定义的 格式化程序时区:$timezone 是从 格林尼治时间 的偏移量(以秒为单位),默认为 $*TZ 变量 的值。

say DateTime.now# OUTPUT: «2018-01-08T13:05:32.703292-06:00␤»

请注意,可以使用下面显示的方法链接到 .now 来轻松表示当前值,例如,

say DateTime.now.year# OUTPUT: «2018␤»

In Terms§

请参阅主要文档 上下文中的术语 now

返回一个表示当前时间的 Instant 对象。它包括 闰秒,因此比 time 大几十秒

say (now - time).Int# OUTPUT: «37␤»