当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


erlang droplast用法及代码示例


Erlang droplast函数/方法的用法及代码示例。


删除列表的最后一个元素。该列表应为非空,否则该函数将崩溃并显示function_clause。

用法


droplast(List1)

参数

  • List1−值列表。

返回值

返回删除了最后一个元素的新列表。

例如


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

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

输出

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


[1,2]

相关用法


注:本文由纯净天空筛选整理自 erlang droplast。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。