Clojure - defstruct



此函数用于定义所需的结构。

语法

以下是语法。

(defstruct structname keys)

参数 - ‘structname’ 是要赋予结构的名称。‘keys’ 是需要成为结构一部分的键。

返回值 - 返回一个结构对象。

示例

以下程序展示了如何使用此函数的示例。

(ns clojure.examples.example
   (:gen-class))
(defn Example []
   (println (defstruct Employee :EmployeeName :Employeeid)))
(Example)

请注意,上述函数仅用于创建结构,我们将看到更多可用于处理结构的函数。

输出

以上程序产生以下输出。

#'clojure.examples.example/Employee
clojure_structmaps.htm
广告