Clojure Vectors nth

2018-12-21 18:30 更新

此函数返回载体中第n个位置的项目。

语法

以下是nth的基本使用语法:

(nth vec index)

参数− 'vec'是项目的载体。 'index'是需要返回的元素的索引位置。

返回值 − 载体索引位置的值。

下面是nth函数的示例:

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

输出

以上示例将输出以下结果:

1
3
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号