Erlang中文手册(Erldoc.com)  »  lists  »  nth/2
Erlang并发编程 Erlang/OTP设计原理 Erlang/OTP[pdf] Mnesia用户手册[pdf] Erlang完整手册[en] 官网手册[en] 模块列表 方法列表 随机 Erlang中文社区(BBS) 美女图库

lists:nth/2

获取列表里的第 N 个元素

用法:

nth(N, List) -> Elem

内部实现:

%% nth(N, L) returns the N'th element of the list L

-spec nth(N, List) -> Elem when
      N :: pos_integer(),
      List :: [T,...],
      Elem :: T,
      T :: term().

nth(1, [H|_]) -> H;
nth(N, [_|T]) when N > 1 ->
    nth(N - 1, T).

获取列表里的第 N 个元素

lists:nth(3, [1, 2, 3, 4, 5]).
阿里云 - 最高1000元通用代金券立即可用
沪ICP备13037221号-9