我正在学习 ETS。我做了:
Sometab = ets:new(sometable, [bag]).
ets:insert(Sometab, {109, ash, 8}).
然后我输入:
ets:match(Sometab, {109, ash, '$1'}).
然而,而不是得到8
- 我得到:["\b"]
作为输出!
我正在学习 ETS。我做了:
Sometab = ets:new(sometable, [bag]).
ets:insert(Sometab, {109, ash, 8}).
然后我输入:
ets:match(Sometab, {109, ash, '$1'}).
然而,而不是得到8
- 我得到:["\b"]
作为输出!