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.html