这是Lispworks中的一个示例。
让我们定义一个foo
带有 slot的类bar
。
CL-USER 26 > (defclass foo () (bar))
#<STANDARD-CLASS FOO 4020001723>
我们需要一个实例:
CL-USER 27 > (make-instance 'foo)
#<FOO 402000339B>
现在我们尝试访问该对象的未绑定插槽。请注意,*
访问先前评估的结果。
CL-USER 28 > (slot-value * 'bar)
我们收到一个错误和一堆重启:
Error: The slot BAR is unbound in the object #<FOO 402000339B>
(an instance of class #<STANDARD-CLASS FOO 4020001723>).
1 (continue) Try reading slot BAR again.
2 Specify a value to use this time for slot BAR.
3 Specify a value to set slot BAR to.
4 (abort) Return to level 0.
5 Return to top loop level 0.
Type :b for backtrace or :c <option number> to proceed.
Type :bug-form "<subject>" for a bug report template or :? for other options.
第 2 次是使用价值重启,第 3 次是存储价值重启。
让我们获取重启列表:
CL-USER 29 : 1 > (compute-restarts)
(#<RESTART ABORT 4020009EB3> #<RESTART ABORT 4020009F53>
#<RESTART NIL 402000585B> #<RESTART USE-VALUE 40200058DB>
#<RESTART STORE-VALUE 402000595B> #<RESTART ABORT 40200059DB>
#<RESTART ABORT 4020005A7B> #<RESTART ABORT 41700D2503>)
在 LispWorks 中,我们可以使用:cc
.
CL-USER 30 : 1 > :cc
#<UNBOUND-SLOT 40200056F3>
找到重启:
CL-USER 31 : 1 > (find-restart 'store-value *)
#<RESTART STORE-VALUE 402000595B>
让我们打印它:
CL-USER 32 : 1 > (princ *)
Specify a value to set slot BAR to.
#<RESTART STORE-VALUE 402000595B>
也用于use-value
重新启动:
CL-USER 33 : 1 > :cc
#<UNBOUND-SLOT 402000B293>
CL-USER 34 : 1 > (find-restart 'use-value *)
#<RESTART USE-VALUE 402000B47B>
CL-USER 35 : 1 > (princ *)
Specify a value to use this time for slot BAR.
#<RESTART USE-VALUE 402000B47B>