Dess Asked: 2024-09-18 22:38:22 +0800 CST2024-09-18 22:38:22 +0800 CST 2024-09-18 22:38:22 +0800 CST 为什么有些 CLIPS 函数名以 $ 结尾? 772 为什么 CLIPS 中的一些内置函数名以 $ 结尾,例如explode$?这有什么意义? clips 1 个回答 Voted Best Answer Gary Riley 2024-09-19T05:02:08+08:002024-09-19T05:02:08+08:00 $ 表示它们可以接受或返回多字段值。多字段变量以 $ 开头,因此使用该特定字符。如果使用 apropos 函数,您可以快速获取包含 $ 字符的函数列表。 CLIPS (6.4.1 4/8/23) CLIPS> (apropos $) slot-replace$ delete$ expand$ slot-direct-replace$ rest$ slot-direct-insert$ delete-member$ explode$ slot-delete$ first$ progn$ replace-member$ insert$ member$ nth$ slot-insert$ union$ implode$ slot-direct-delete$ replace$ create$ length$ difference$ intersection$ subseq$ CLIPS>
$ 表示它们可以接受或返回多字段值。多字段变量以 $ 开头,因此使用该特定字符。如果使用 apropos 函数,您可以快速获取包含 $ 字符的函数列表。