Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been trying to get my head around shallow binding and deep binding, wikipedia doesn't do a good job of explaining it properly. Say I have the following code, what would the output be if the language uses dynamic scoping with

a) deep binding

b) shallow binding?

x: integer := 1
y: integer := 2

procedure add
  x := x + y

procedure second(P:procedure)
  x:integer := 2
  P()

procedure first
  y:integer := 3
  second(add)

----main starts here---
first()
write_integer(x)
share|improve this question
Is this Python? is your question language agnotic? please specify – Shimmy Dec 27 '09 at 1:50

2 Answers

up vote 10 down vote accepted

Deep binding binds the environment at the time the procedure is passed as an argument

Shallow binding binds the environment at the time the procedure is actually called

So for dynamic scoping with deep binding when add is passed into second the environment is x = 1, y = 3 and the x is the global x so it writes 4 into the global x, which is the one picked up by the write_integer.

Shallow binding just traverses up until it finds the nearest variable that corresponds to the name so the answer would be 1.

share|improve this answer
2  
For shallow binding, if I were to place "write_integer(y)" inside of procedure second (before P() ) would I get 3 or 2 ? Also for shallow binding, can I not change the value of a global variable? – vvMINOvv Feb 14 '12 at 0:30

shallow binding should be 5. definations: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=15&lngWId=6

share|improve this answer
3  
No, with shallow binding it outputs 1, as jjia6395 says. This is because the call to P() modifies the x that is local to second, which then disappears when second returns. The call to write_integer(x) prints the global x, which was not modified. – ruakh Feb 6 '12 at 22:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.