我从sbcl编译器收到警告,已经定义了一个变量但没有使用它。编译器是对的。我想摆脱警告,但不知道该怎么做。这是一个例子:
(defun worker-1 (context p)
;; check context (make use of context argument)
(if context
(print p)))
(defun worker-2 (context p)
;; don't care about context
;; will throw a warning about unused argument
(print p))
;;
;; calls a given worker with context and p
;; doesn't know which arguments will be used by the
;; implementation of the called worker
(defun do-cmd (workerFn context p)
(funcall workerFn context p))
(defun main ()
(let ((context ()))
(do-cmd #'worker-1 context "A")
(do-cmd #'worker-2 context "A")))
do-cmd-function期望实现特定接口f(上下文p)的工作者函数。
sbcl编译器抛出以下警告:
in: DEFUN WORKER-2
; (DEFUN WORKER-2 (CONTEXT P) (PRINT P))
;
; caught STYLE-WARNING:
; The variable CONTEXT is defined but never used.
;
; compilation unit finished
; caught 1 STYLE-WARNING condition
答案 0 :(得分:12)
您需要声明参数是故意ignored。
(defun worker-2 (context p)
(declare (ignore context))
(print p))
如果您 使用该变量, ignore
也会发出警告。要在两种情况下禁止警告,您可以使用声明ignorable
,但这只应在宏和其他可能的情况下使用,以确定变量是否将用于宣言的重点。
如果您还不熟悉declare
,请注意它不是运营商,而只能出现在certain locations;特别是,它必须位于defun
正文中的所有表单之前,尽管它可以位于文档字符串的上方或下方。