当类在列表中时,我不能使用 clos 访问器函数。
假设我有a类:
(defclass a ()
((a :accessor a
:initarg :a)))
我做了两个实例:
(defparameter b (make-instance 'a :a 1))
(defparameter c (make-instance 'a :a 2))
然后如果我想创建一个函数来获取列表中每个实例的 a 值,我会这样做
(defun get-a (lst)
(mapcar #'a lst))
并调用它
(get-a '(b c))
但我这样做我得到一个错误:
There is no applicable method for the generic function
#<STANDARD-GENERIC-FUNCTION A (1)>
when called with arguments
(B).
[Condition of type SIMPLE-ERROR]
如果不是直接使用 mapcar 调用访问器,而是调用包含访问器的函数,也会发生这种情况。我也尝试过使用循环和其他东西而不是 mapcar。
谢谢