Erlang - 元素



此方法返回元组中的第 N 个元素。

语法

element(N,Tuple)

参数

  • N − 需要返回的元组中的位置。

  • 元组 − 需要返回第 N 个元素的元组。

返回值

此方法返回元组中的第 N 个元素。

例如

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

start() -> 
   io:fwrite("~p~n",[element(2, {a, b, c})]).

输出

运行上述程序后,将得到以下结果。

b
erlang_bifs.htm
广告