Erlang-日期


该方法返回当前系统日期。

句法

date()

参数

  • 没有任何

返回值

当前日期以列表形式返回。

例如

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

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

输出

当我们运行上面的程序时,我们将得到以下结果。日期值取决于当前系统日期。一个例子如下 -

{2016,4,17}
erlang_bifs.htm