- 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 - 如果构造
if 宏后面接着一个对 t 或 nil 求值的测试子句。如果测试子句被求值为 t,则执行测试子句之后的动作。如果它为 nil,则求值下一个子句。
if 的语法 -
(if (test-clause) (action1) (action2))
示例
创建一个名为 main.lisp 的新源代码文件,并输入以下代码。
main.lisp
; set a as 10 (setq a 10) ; check if a is greater than 20 (if (> a 20) ; print the result if a is less than 20 (format t "~% a is less than 20")) ; print the value of a (format t "~% value of a is ~d " a)
输出
当你点击执行按钮,或按 Ctrl+E 时,LISP 会立即执行它,返回的结果是 -
value of a is 10
示例
if 子句后面可以跟一个可选的 then 子句。
创建一个名为 main.lisp 的新源代码文件,并输入以下代码。
main.lisp
; set a as 10 (setq a 10) ; check if a is greater than 20 (if (> a 20) ; print statement if a is greater than 20 then (format t "~% a is less than 20")) ; print value of a (format t "~% value of a is ~d " a)
输出
当你点击执行按钮,或按 Ctrl+E 时,LISP 会立即执行它,返回的结果是 -
a is less than 20 value of a is 10
示例
你还可以使用 if 子句创建 if-then-else 类型的语句。
创建一个名为 main.lisp 的新源代码文件,并输入以下代码。
main.lisp
; set a as 100 (setq a 100) ; if a is greater than 20 (if (> a 20) ; print statement if a is greater than 20 (format t "~% a is greater than 20") ; else print this statement (format t "~% a is less than 20")) (format t "~% value of a is ~d " a)
输出
当你点击执行按钮,或按 Ctrl+E 时,LISP 会立即执行它,返回的结果是 -
a is greater than 20 value of a is 100
lisp_decisions.htm
广告