此方法用于从Map返回所有键。
keys - 语法
keys(map)
map - 这是需要为其返回所有键的映射。
keys - 返回值
返回Map中的键列表。
-module(helloLearnfk). -export([start/0]). start() -> Lst1=[{"a",1},{"b",2},{"c",3}], Map1=maps:from_list(Lst1), io:fwrite("~p~n",[maps:keys(Map1)]).
上面程序的输出如下。
["a","b","c"]
参考链接
https://www.learnfk.com/erlang/erlang-keys.html
标签:Map,erlang,Lst1,start,keys,无涯,maps,Erlang From: https://blog.51cto.com/u_14033984/8708362