如果数字是浮点数,则返回true。
以下是语法。
(float? number)
以下是浮动测试功能的示例。
(ns clojure.examples.hello
(:gen-class))
;; This program displays Hello World
(defn Example []
(def x (float? 0))
(println x)
(def x (float? 0.0))
(println x))
(Example)
上述程序产生以下输出。
false
true