Clojure float
2018-12-20 17:25 更新
如果数字是浮点数,则返回true。
语法
以下是float的基本使用语法:
(float? number)
例
下面是float函数的示例:
(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
以上内容是否对您有帮助:
更多建议: