gpt4 book ai didi

erlang - ets:match 不返回预期值

转载 作者:行者123 更新时间:2023-12-04 23:47:25 25 4
gpt4 key购买 nike

我在使用 ets:match 时遇到问题。在下面的代码中,我希望 ets:match 返回 1 个找到的值,但没有返回任何值。为什么?

1> T = ets:new(xxx, []).
16400
2> ets:insert(T, {a, b, c, d}).
true
3> ets:match(T, {'_', '_', '_', '_'}).
[[]]

最佳答案

你可能想要 ets:match_object/2而是:

> ets:match_object(T, {'_', '_', '_', '_'}).
[{a,b,c,d}]

使用 ets:match/2 时,模式应该包括一些原子,如 '$1''$2' 等。结果将是一个列表列表,其中每个子列表将包含按魔术原子给定顺序的相应元素。例如,要以相反的顺序获取最后三个元素:

> ets:match(T, {'_', '$3', '$2', '$1'}).
[[d,c,b]]

由于您没有在匹配中使用任何此类原子,因此每次匹配都返回零个元素;因此该列表包含一个空列表,[[]].

关于erlang - ets:match 不返回预期值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15750469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com