- LISP 教程
- LISP - 主页
- LISP - 概览
- LISP - 环境
- LISP - 程序结构
- LISP - 基本语法
- LISP - 数据类型
- LISP - 宏
- LISP - 变量
- LISP - 常量
- LISP - 运算符
- LISP - 决策
- LISP - 循环
- LISP - 函数
- LISP - 断言
- LISP - 数字
- LISP - 字符
- LISP - 数组
- LISP - 字符串
- LISP - 序列
- LISP - 列表
- LISP - 符号
- LISP - 向量
- LISP - 集合
- LISP - 树
- LISP - 哈希表
- LISP - 输入和输出
- LISP - 文件 I/O
- LISP - 结构
- LISP - 包
- LISP - 错误处理
- LISP - CLOS
- LISP 有用资源
- Lisp - 快速指南
- Lisp - 有用资源
- Lisp - 讨论
Lisp - 关键字参数
关键字参数允许你指定哪些值与哪些特定参数匹配。
它使用 &key 符号表示。
当你将值发送到函数时,你必须用 :parameter-name. 为值加上前缀。
以下示例说明了此概念。
示例
创建一个名为 main.lisp 的新源代码文件,并在其中键入以下代码。
main.lisp
; define a function show-members to print list of arguments passed (defun show-members (&key a b c d ) (write (list a b c d))) ; call function with three parameters (show-members :a 1 :c 2 :d 3) ; terminate printing (terpri) ; call function with two parameters (show-members :a 1 :b 2)
输出
当你执行该代码时,它将返回以下结果 −
(1 NIL 2 3) (1 2 NIL NIL)
示例
更新名为 main.lisp 的源代码文件,并在其中键入以下代码。
main.lisp
; define a function show-members to print list of arguments passed (defun show-members (&key a b c d ) (write (list a b c d))) ; call function with three parameters (show-members :a 'p :b 'q :c 'r :d 's) ; terminate printing (terpri) ; call function with two parameters (show-members :a 'p :d 'q)
输出
当你执行该代码时,它将返回以下结果 −
(P Q R S) (P NIL NIL Q)
示例
更新名为 main.lisp 的源代码文件,并在其中键入以下代码。
main.lisp
; define a function show-members to print list of arguments passed (defun show-members (&key a b c d ) (write (list a b c d))) ; call function with three parameters (show-members :a 1.0 :c 2.0 :d 3.0) ; terminate printing (terpri) ; call function with two parameters (show-members :a 1.0 :b 2.0)
输出
当你执行该代码时,它将返回以下结果 −
(1.0 NIL 2.0 3.0) (1.0 2.0 NIL NIL)
广告