Lisp - 函数返回的值



默认情况下,LISP 中的函数以作为返回值计算的最后一个表达式的值作为返回值。以下示例演示了这一点。

示例

创建一个名为 main.lisp 的新源代码文件,并在其中输入以下代码。

main.lisp

; define a function add-all which will return sum of passed numbers
(defun add-all(a b c d)
   (+ a b c d)
)
; set sum as result of add-all function
(setq sum (add-all 10 20 30 40))
; print value of sum
(write sum)
; terminate printing
(terpri)
; print value of result of add-all function
(write (add-all 23.4 56.7 34.9 10.0))

输出

执行代码后,它将返回以下结果 -

100
125.0

但是,你可以使用 return-from 特殊运算符,以立即从函数返回任何值。

示例

更新名为 main.lisp 的源代码文件,并在其中输入以下代码 -

main.lisp

; define a function to return a number as 10
(defun myfunc (num)
   (return-from myfunc 10)
   num
)
; print result of function call
(write (myfunc 20))

输出

执行代码后,它将返回以下结果 -

10

稍作更改的代码 -

main.lisp

; define a function to return a number as 10
(defun myfunc (num)
   (return-from myfunc 10)
   write num
)
; print result of function call
(write (myfunc 20))

输出

它仍然返回 -

10
lisp_functions.htm
广告