Clojure find-ns
2018-12-22 14:28 更新
查找并返回特定的命名空间。
语法
以下是 find-ns 的基本使用语法:
(find-ns namespace-name)
参数− 'namespace-name'是需要找到的命名空间。
返回值 − 命名空间(如果存在)。
例
下面是 find-ns 的使用示例:
(ns clojure.examples.example (:require [clojure.set :as set]) (:gen-class)) (defn example [] (println (find-ns 'clojure.string))) (example)
输出
以上示例将输出以下结果:
#object[clojure.lang.Namespace 0x6d3a388c clojure.string]
以上内容是否对您有帮助:
更多建议: