当前位置: 首页 > 文档资料 > Clojure 中文教程 >

Show 例子

优质
小牛编辑
133浏览
2023-12-01

逻辑运算符用于计算布尔表达式。 以下是Groovy中可用的逻辑运算符。

操作者描述
and这是逻辑“和”运算符(或者说真的)会给出真实的
or这是逻辑“或”运算符(而真假)会给出错误的
not这是逻辑“非”运算符(不是假的)会给出真实的

以下代码段显示了如何使用各种运算符。

例子 (Example)

(ns clojure.examples.hello
   (:gen-class))
;; This program displays Hello World
(defn Example []
   (def x (or true true))
   (println x)
   (def x (and true false))
   (println x)
   (def x (not true))
   (println x))
(Example)

上述程序产生以下输出。

输出 (Output)

true
false
false