Erlang - 当地时间


该方法用于给出系统中的本地日期和时间。

句法

localtime()

参数

  • 没有任何

返回值

该方法用于给出系统中的本地日期和时间。

例如

-module(helloworld). 
-export([start/0]). 

start() -> 
   io:fwrite("~p~n",[erlang:localtime()]).

输出

当我们运行上面的程序时,我们将得到以下结果。

{{2016,4,17},{11,33,9}}
erlang_bifs.htm