- 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 - 文件输入/输出
- LISP - 结构
- LISP - 包
- LISP - 错误处理
- LISP - CLOS
- LISP 实用资源
- Lisp - 快速指南
- Lisp - 实用资源
- Lisp - 讨论
Lisp - when 结构
when 宏后面是一个 test 子句,该子句可计算为 t 或 nil。如果 test 子句计算为 nil,则不计算任何形式并返回 nil,但如果测试结果为 t,则执行 test 子句后面的 action。
when 宏的语法 −
(when (test-clause) (<action1) )
示例
创建一个名为 main.lisp 的新源代码文件,并在其中键入以下代码。
main.lisp
; set a as 100 (setq a 100) ; check if a is greater than 20 (when (> a 20) ; print the statement is above statement is true (format t "~% a is greater than 20")) ; print the statement (format t "~% value of a is ~d " a)
输出
当你单击“执行”按钮,或键入 Ctrl+E 时,LISP 立即执行它,返回的结果是 −
a is greater than 20 value of a is 100
示例
更新文件 main.lisp,并在其中键入以下代码。
main.lisp
; set a as 10 (setq a 10) ; check if a is greater than 20 (when (> a 20) ; print the statement is above statement is true (format t "~% a is greater than 20")) ; print the statement (format t "~% value of a is ~d " a)
输出
当你单击“执行”按钮,或键入 Ctrl+E 时,LISP 立即执行它,返回的结果是 −
value of a is 10
lisp_decisions.htm
广告