此方法用于查找Map中是否存在特定键。
find - 语法
find(key,map)
key - 这是需要转换为Map的列表。
Map - 这是需要在其中搜索键的Map。
find - 返回值
如果在Map上找到键,则返回值。
-module(helloLearnfk). -export([start/0]). start() -> Lst1=[{"a",1},{"b",2},{"c",3}], Map1=maps:from_list(Lst1), io:fwrite("~p~n",[maps:find("a",Map1)]).
上面程序的输出如下。
{ok,1}
参考链接
https://www.learnfk.com/erlang/erlang-find.html
标签:Map,erlang,Lst1,start,无涯,maps,Erlang,find From: https://blog.51cto.com/u_14033984/8706364