如何使用变量作为Erlang中的引用传递?

问题描述

为什么我的输出没有反映在Lst1中?

-module(pmap). 
-export([start/0,test/2]). 

test(Lst1,0) ->
   {ok,[Temp]} = io:fread( "Input the edge weight  ","~d" ),lists:append([Lst1,[Temp]]),io:fwrite("~w~n",[Lst1]);

test(Lst1,V) ->
   {ok,test(Lst1,V-1).

start() -> 
   {ok,[V]} = io:fread( "Input the number of vertices your graph has  ",Lst1 = [],V).

因此,我的Lst1正在打印[],而如果我提供输入1,2,3,我希望它可以打印[1,3]。

解决方法

因为Erlang变量是不可变的,根本无法更改。 lists:append返回您丢弃的新列表。

,

@Alexey Romanov正确指出,您没有使用lists:append/2的结果。

这就是我要修复您的代码的方式...

-module(pmap). 
-export([start/0,test/2]). 

test(Lst1,0) ->
    {ok,[Temp]} = io:fread( "Input the edge weight  ","~d" ),Lst2 = lists:append([Lst1,[Temp]]),io:fwrite("~w~n",[Lst2]),Lst2;
test(Lst1,V) ->
    {ok,test(Lst2,V-1).

start() -> 
   {ok,[V]} = io:fread( "Input the number of vertices your graph has  ",Lst1 = [],test(Lst1,V).

但是实际上,更多的惯用代码可以达到相同的结果……

-module(pmap). 
-export([start/0,Lst2 = lists:reverse([Temp|Lst1]),test([Temp | Lst1],V).