美文网首页
学习clojure第五天

学习clojure第五天

作者: ukao | 来源:发表于2017-03-25 10:38 被阅读0次

    纯量(scalars)

    nil
    true,false
    

    nil有点像java的null或者Python的None,clojure没有像js里面的"undefined",如果引用一个没有定义的变量,编译器会提示。

    1        ; integer
    1N       ; 任意精度整形(arbitrary-precision integer)
    1.2      ; float/double/decimal
    1.2M     ; 任意精度小数(arbitrary-precision decimal
    1.2e4    ; 科学计数法(scientific notation)
    1.2e4M   ; 任意精度的科学计数法(sci notation of arbitrary-precision decimal)
    
    0x3a     ; 二进制数(支持58位精度)hex literal (58 in decimal)
    1/3      ; 分数(Rational number, or "ratio".)
    \a       ; 字符(The character "a".)
    "hi"     ; 字符串(A string.)
    

    这些都好理解,后面也会用到

    #"^foo\d?$"   ;正则表达式( A regular expression.)
    :foo          ; 关键字(A keyword).
    

    正则表达式后面会使用
    “关键字”不太好理解,官方的描述是“是一个可以计算他们自己的纯量”,举个了列子就是可以在HashMap中当做key,这个在后面的Data Structure章节中会使用。

    'foo   ; (符号)A symbol.
    

    symbol是一个物体(Object)代表一个东西的名称,单引号会让clojure去指向一个引用(refers),symbol的主要作用就是来标识宏。

    官方单独说明了,这里的Object跟java不一样,clojure不是面向对象的语言。另外clojure有Reference Type的定义,这里引用(refers)就是指向Reference Type。在下面宏的引用里面会更清晰一些。

    数据结构(Data Structure)

    [1 2 3]            ; 容器(A vector)
    [1 :two "three"]   ; 容器可以放任意纯量(Put anything into them you like.)
    {:a 1 :b 2}        ; Map.
    

    :a和:b表示key,1和2表示value,一对key-value叫做entry

    #{:a :b :c}        ; A set (unordered, and contains no duplicates).
    '(1 2 3)           ;  A list (linked-list)
    

    这个一看就明白了,官方也没有过多解释。

    (def my-stuff '("shirt" "coat" "hat"))  ; Works fine, but ...
    (def my-stuff ["shirt" "coat" "hat"])   ; this is more typical usage.
    

    在clojure里面一组值使用vector,而不是list,这跟java不一样,官方意思是:当处理代码本事是一组嵌套代码时,才使用list,详情看宏。这里不好理解,后面了解宏后应该会清晰一点。

    #{:a
      [1 2 3]
      {:foo 11 :bar 12}
      #{"shirt" "coat" "hat"}}
    

    数据可以嵌套

    抽象

    Vector,Map,List和Sets都是具体的数据类型,具体的数据类型都是抽象类型的实现。

    1.Collection (Lists, vectors, maps, and sets are all collections.)
    2.Sequential (Lists and vectors are ordered collections.)
    3.Associative (Hashmaps associate keys with values. Vectors associate - numeric indices with values.)
    4.Indexed (Vectors, for example, can be quickly indexed into.)

    相关文章

      网友评论

          本文标题:学习clojure第五天

          本文链接:https://www.haomeiwen.com/subject/wsaqottx.html