提问人:pramington 提问时间:12/10/2014 最后编辑:pramington 更新时间:12/10/2014 访问量:85
通过按引用传递和按值传递结果进行跟踪时遇到问题
Trouble tracing through pass-by-reference and pass-by-value-result
问:
我有以下程序:
begin
integer i;
procedure pass(x, y);
integer x, y;
begin
x := x+1;
y := x+1;
x := y;
i := i+ 1
end
i := 1;
pass(i,i);
print i
end
我可以处理按值传递的答案,但是按引用传递和按值传递结果跟踪会是什么样子?
答: 暂无答案
评论
x
y
i