Clojure - 列表 nth



此函数返回列表中“第 n 个”位置的项目。

语法

以下是语法。

(nth lst index)

参数 - ‘lst’ 是项目列表。‘index’ 是需要返回的元素的索引位置。

返回值 - 列表中索引位置的值。

示例

以下是 Clojure 中 nth 的示例。

(ns clojure.examples.example
   (:gen-class))
(defn example []
   (println (nth (list 1 2,3) 0))
   (println (nth (list 1 2,3) 2)))
(example)

输出

以上程序产生以下输出。

1
3
clojure_lists.htm
广告