The B Programming LanguageHandling
of Subprograms and Storage Management
Function Definitions
The name is initialized to the rvalue of the function. The arguments consist of a list of names separated by commas. Each name defines an automatic lvalue that is assigned the rvalue of the corresponding function call's actual parameters. The statement (often compound) defines the execution of the function when invoked. Recursion
putnumb(n) {
This simplified version of the library function putnumb illustrates the use of recursion. (It only works for n>0.) "a" is set to the quotient of n/10; if this is non-zero, a recursive call on putnumb is made to print the quotient. Eventually, the high-order digit of n will be printed, and then, as each invocation of putnumb is popped, the next digit will be added on. Argument Passing For instance, consider a function flip(x,y), which is intended to interchange its arguments. One might naively write
but this has no effect at all. What one must do to accomplish the interchange is to pass the arguments as explicit addresses, and use them as addresses. Thus, the interchange can be invoked as flip (&a,&b); and the definition of the flip function is changed to
The spaces on the right side of the equal signs must not be omitted. This problem does not arise if the arguments are vectors, since a vector is represented by its address. Other FeaturesCalling FORTRAN and GMAP Subroutines from B
Programs
Here name is the FORTRAN function or subfunction to be used, and the a's are the zero or more arguments of the subroutine. There are some restrictions on callf, related to the "call-by-value" problem.
|