实际上,我正在一个名为“Queue”的模块中实现队列数据类型。我的数据类型也称为“队列”,它是唯一的值构造函数:
module Queue (Queue, enq, emptyQueue) where
data Queue a = Queue {
inbox :: [a],
outbox :: [a]
} deriving (Eq, Show)
emptyQueue :: Queue a
emptyQueue = Queue [] []
enq :: a -> Queue a -> Queue a
enq x (Queue inb out) = Queue (x:inb) out
-- other function definitions (irrelevant here)...
据我了解,因为我在导出语句中写了Queue
,而不是Queue(..)
或Queue(Queue)
,所以我不希望导出我的数据类型的值构造函数由模块。这正是我想要的,为了封装目的:用户不应该直接使用值构造函数;只有emptyQueue
,enq
和我界面中的其他功能。
然而(对于经验丰富的Haskellers,我的问题的解决方案可能很明显),如果我在GHCi中加载模块,我可以直接使用值构造函数。
$ ghci Queue.hs
GHCi, version 7.8.4: http://www.haskell.org/ghc/ :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
[1 of 1] Compiling Queue ( Queue.hs, interpreted )
Ok, modules loaded: Queue.
λ> Queue [1] [2]
Queue {inbox = [1], outbox = [2]}
如上所述,这是不希望的。我做错了什么?
答案 0 :(得分:13)
你没有做错任何事。只是为了方便起见,ghci忽略了它加载的模块的范围规则。
如果您想查看通常可用的内容,可以
:m -Queue
:m +Queue
您可以稍后使用
返回“一切皆有可用”模式:m *Queue
另请参阅官方文档中的What's really in scope at the prompt?。