I've check wikipedia, and googled but I still can't wrap my mind around how pass-by-name works in ALGOL 60.
Thanks!
|
I've check wikipedia, and googled but I still can't wrap my mind around how pass-by-name works in ALGOL 60. Thanks!
| ||||
|
feedback
|
|
I found a good explanation at Pass-By-Name Parameter Passing. Essentially, the body of a function is interpreted at call time after textually substituting the actual parameters into the function body. In this sense the evaluation method is similar to that of C preprocessor macros. By substituting the actual parameters into the function body, the function body can both read and write the given parameters. In this sense the evaluation method is similar to pass-by-reference. The difference is that since with pass-by-name the parameter is evaluated inside the function, a parameter such as The page I linked above has some more examples of where pass-by-name is both useful, and dangerous. The techniques made possible by the pass-by-name are largely superseded today by other, safer techniques such as pass-by-reference and lambda functions. | |||||||||||||
feedback
|
|
I'm assuming you mean call-by-name in ALGOL 60. Call-by-name similar to call-by-reference in that you can change the value of the passed in parameter. It differs from call-by-reference in that the parameter is not evaluated before the procedure is called but is instead evaluated lazily. That is, it is evaluated when and only when the parameter is actually used. For example, suppose we have a procedure f(x, y) and we pass it i and i/2 where i is initially equal to 10. If f sets x to 42 and then evaluates y it will see the value 21 (whereas with call by reference or call by value it would still see 5). This is because the expression "i/2" isn't evaluated until y is evaluated. In many ways this appears to behave like a literal text-substitution of the parameters (with renaming to avoid name conflicts). In practice, however, this is implemented using "thunks" (basically closures) for the passed in expressions. The Wikipedia article on Jensen's Device shows an interesting example of using call by name. In particular, pay attention to how the "term" parameter is used. | |||
|
feedback
|
|
Flatlander has an illuminating example of how it works in Scala here. Suppose you wanted to implement while:
Scala is not Algol 60, but maybe it sheds some light. | |||
|
feedback
|
|
For those in the future: Concepts in Programming Languages by John C. Mitchell was also helpful.
| |||
|
feedback
|
|
You can pass "name" in the symbolic form of a variable which allows it to be both updated and accessed simultaneously.As an example lets say you want to triple a variable x which is of type int. start double(x); real x; begin x : =x*3 end; | |||
|
feedback
|