Erlang - now 方法
此方法返回元组 {MegaSecs, Secs, MicroSecs},它是自 1970 年 1 月 1 日 00:00 GMT 以来经过的时间。
语法
now()
参数
None
返回值
返回元组 {MegaSecs, Secs, MicroSecs},它是自 1970 年 1 月 1 日 00:00 GMT 以来经过的时间。
例如
-module(helloworld). -export([start/0]). start() -> io:fwrite("~p~n",[erlang:now()]).
输出
当我们运行上面的程序时,我们将得到以下结果。 根据系统的不同,输出会有所不同。
{1460,893073,767749}