Common Lisp scoping (dynamic vs lexical)

折月煮酒 提交于 2019-12-31 10:01:49

问题


EDIT: I changed the example code after the first answer because I came up with a simple version that begs the same questions.

I am currently learning Common Lisp's scoping properties. After I thought I had a solid understanding I decided to code up some examples that I could predict the outcome of, but apparently I was wrong. I have three question, each one relating to an example below:

Example 1:

(defmethod fun1 (x)
  (print x)
  (fun2))

(defmethod fun2 ()
  (print x))

(fun1 5)

Output:

5 
*** - EVAL: variable X has no value

Question: This makes sense. x is statically scoped and fun2 has no way of finding the value of x without having it passed explicitly.

Example 2:

(defvar x 100)

(defmethod fun1 (x)
  (print x)
  (fun2))

(defmethod fun2 ()
  (print x))

(fun1 5)

Output:

5
5

Question: I don't understand why x is suddenly visible to fun2 with the value that fun1 gave it, instead of having a value of 100...

Example 3:

(setf x 100)

(defmethod fun1 (x)
  (print x)
  (fun2))

(defmethod fun2 ()
  (print x))

(fun1 5)

Output:

5
100

Question: Should I ignore these results since calling setf on an undeclared variable is apparently undefined? This happens to be what I would expect in my second example...

Any insight would be greatly appreciated...


回答1:


The effects of setting an undefined variable using SETF is undefined in ANSI Common Lisp.

DEFVAR will define a special variable. This declaration is global and also has effect on LET bindings. That's the reason that by convention these variables are written as *foo*. If you have ever defined X with DEFVAR, it is declared special and there is no way to declare it lexical later.

LET by default provides local lexical variables. If the variable was already declared special (for example because of a DEFVAR), then it just creates a new local dynamic binding.

Update

  • Example 1 .

Nothing to see.

  • Example 2

Xhas been declared special. All uses of the variable X now use dynamic binding. When calling the function, you bind X to 5. Dynamically. Other functions can now access this dynamic binding and get that value.

  • Example 3

This is undefined behavior in Common Lisp. You are setting an undeclared variable. What happens then is implementation dependent. Your implementation (most do something similar) sets the symbol value of X to 100. In FUN1, X is lexically bound. In FUN2 evaluating X retrieves the symbol value (or possibly to the dynamically bound value) of X.

As an example for an implementation that did (does?) something else: the CMUCL implementation would also have declare X in example 3 by default to be special. Setting an undefined variable also declares it special.

NOTE

In portable standard compliant Common Lisp code the global variables are defined with DEFVAR and DEFPARAMETER. Both declare these variables to be special. ALL uses of these variables now involve dynamic binding.

Remember:

((lambda (x)
   (sin x))
 10)

is basically the same as

(let ((x 10))
  (sin x))

Which means that variable bindings in LET bindings and variable bindings in function calls are working the same way. If X would have been declared special in some place earlier, both would involve dynamic binding.

This is specified in the Common Lisp standard. See for example the explanation to the SPECIAL declaration.



来源:https://stackoverflow.com/questions/7787683/common-lisp-scoping-dynamic-vs-lexical

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!