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
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号