开发者

Why does require in the ns form behave different from the require function

开发者 https://www.devze.com 2023-01-16 02:35 出处:网络
When I require libraries from the ns form I get : test> (ns test (:require \'(clojure.contrib [logging :as log] [sql :as sql]) ))

When I require libraries from the ns form I get :

test> (ns test (:require '(clojure.contrib [logging :as log] [sql :as sql]) ))
lib names inside prefix lists must not contain periods
[Thrown class java.lang.Exception]

When I use the require function it works as expected.

test> (require '(clojure.contrib [logging :as log] [sql :as sql]) )
nil

The documentation for ns re开发者_运维技巧fers to the documentation of the require function but as they behave differently this is a bit confusing.


The ns form is a macro, and so it doesn't require that you use ' to quote the provided seq.

An example from the Clojure docs:

(ns foo.bar
    (:refer-clojure :exclude [ancestors printf])
    (:require (clojure.contrib sql sql.tests))
    (:use (my.lib this that))
    (:import (java.util Date Timer Random)
       (java.sql Connection Statement)))
0

精彩评论

暂无评论...
验证码 换一张
取 消