本文介绍了Erlang接收表达式到底如何工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
- 为什么有时将接收表达式称为选择性接收?
- 什么是保存队列?
- 如何之后的部分有效吗?
推荐答案
该过程中涉及特殊的保存队列
There is a special "save queue" involved in the procedure that when you first encounter the receive expression you may ignore its presence.
可选地,表达式中可能会有一个后段,使过程变得有些复杂。
Optionally, there may be an after-section in the expression that complicates the procedure a little.
最好用流程图解释接收表达式:
The receive expression is best explained with a flowchart:
receive
pattern1 -> expressions1;
pattern2 -> expressions2;
pattern3 -> expressions3
after
Time -> expressionsTimeout
end
这篇关于Erlang接收表达式到底如何工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!