此方法用于从地图返回所有键。
keys(map)
map - 这是需要返回所有键的映射。
返回地图中的键列表。
-module(helloworld). -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"]