我正在尝试学习 Erlang 货币编程。
这是一个从 Erlang.org 获得的示例程序,但没有关于如何运行它的说明。
我以这种方式运行它,
1> counter:start()
<0.33.0>
但是,我不知道如何运行其他函数,以便进程 (counter:start()) 可以根据收到的消息完成工作。
如何确认确实生成了两个或多个进程?
另一个问题,如何在函数中打印收到的消息?
-module(counter).
-export([start/0,loop/1,increment/1,value/1,stop/1]).
%% First the interface functions.
start() ->
spawn(counter, loop, [0]).
increment(Counter) ->
Counter ! increment.
value(Counter) ->
Counter ! {self(),value},
receive
{Counter,Value} ->
Value
end.
stop(Counter) ->
Counter ! stop.
%% The counter loop.
loop(Val) ->
receive
increment ->
loop(Val + 1);
{From,value} ->
From ! {self(),Val},
loop(Val);
stop -> % No recursive call here
true;
Other -> % All other messages
loop(Val)
end.
任何帮助将不胜感激。
谢谢