clojure基本数据类型
程序员文章站
2022-05-21 09:23:43
...
这里介绍clojure的基本数据类型,不包含集合,列表
1. 数字 Number
1,2,3
=>(def n 12)
2. 字符串 String
"abc"
=>(def name "tom")
3.正则表达式
=>(def r #"[a-z]")
=>(def r (re-pattern "[a-z]"))
例子
(re-matches #"[a-z]+" "test")
->"test"
re-matcher, re-find, re-groups, re-seq
4. 布尔 Boolean
nil和false 为false,其他值都为true
5 字符 Characters
\i, \u00A3
6 关键字 keywords
:a, :b, :c
(keyword "a")
-> :a
(keyword? :a)
-> true
keywords可以是namespaced的, :user/foo, 是user命名空间的一个关键字
::foo 与 :user/foo等价(user是当前命名空间)
上一篇: 听说scala、结缘clojure