Last active
December 20, 2016 07:13
-
-
Save zhouqiang-cl/10e3d29d763037c608725b297f314348 to your computer and use it in GitHub Desktop.
common lisp 的访问器 SYMBOL-VALUE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
symbol-value symbol => value | |
(setf (symbol-value symbol) new-value) | |
参数和值 | |
symbol --- 一个 symbol ,这个 symbol 必须有值 | |
value, new-value --- 一个 object | |
描述 | |
存取 symbol 的 value | |
代码 | |
* (setf (symbol-value 'a) 1) | |
1 | |
* (symbol-value 'a) | |
1 | |
* a | |
1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment