Erlang - 最后



返回列表中的最后一个元素。

语法

last(lst1)

参数

  • Lst1 − 元素列表。

返回值

返回列表中的最后一个元素。

例如

-module(helloworld). 
-import(lists,[last/1]).
-export([start/0]). 

start() -> 
   Lst1=[1,2,3,4], 
   io:fwrite("~w~n",[last(Lst1)]).

输出

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

4
lists.htm
广告