Clojure - float?
如果数字是浮点数,则返回 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