Clojure Accessing Individual Fields
2018-12-27 10:36 更新
可以通过访问键和结构对象来访问结构的单个字段。
语法
下面是 Accessing Individual Fields 的使用示例:
:key structure-name
参数 − 'key'是结构中的键值。 'structure-name'是相应键的结构。
返回值 − 将返回与键相关联的值。 下面的程序显示了如何使用它的示例。
例
(ns clojure.examples.example (:gen-class)) (defn Example [] (defstruct Employee :EmployeeName :Employeeid) (def emp (struct-map Employee :EmployeeName "John" :Employeeid 1)) (println (:Employeeid emp)) (println (:EmployeeName emp))) (Example)
输出
以上示例将输出以下结果:
1 John
以上内容是否对您有帮助:
更多建议: