> Erlang中文手册 > droplast/1 删除列表中的最后一个元素

lists:droplast/1

删除列表中的最后一个元素

用法:

droplast(List) -> InitList

内部实现:

-spec droplast(List) -> InitList when
      List :: [T, ...],
      InitList :: [T],
      T :: term().

%% This is the simple recursive implementation
%% reverse(tl(reverse(L))) is faster on average,
%% but creates more garbage.
droplast([_T])  -> [];
droplast([H|T]) -> [H|droplast(T)].

删除列表 List 中的最后一个元素。

lists:droplast([1, 2, 3, 4, 5]).

该列表不能为空列表,否则会报一个 function_clause 的错误。

lists:droplast([]).