Erlang - 列表到元组


该方法是将列表转换为元组。

句法

list_to_tuple(list)

参数

  • list - 这是需要转换为元组的列表。

返回值

根据提供的列表返回一个元组。

例如

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

start() -> 
   io:fwrite("~w",[list_to_tuple([1,2,3])]).

输出

上述程序的输出如下

{1,2,3}
erlang_tuples.htm