gpt4 book ai didi

haskell - 为什么我可以使用我的值构造函数,即使我不导出它?

转载 作者:行者123 更新时间:2023-12-02 02:01:20 25 4
gpt4 key购买 nike

为了练习,我在一个名为“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 ,以及我界面中的其他功能。

但是(对于经验丰富的 Haskeller 来说,我的问题的解决方案可能很明显),如果我在 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]}

如上所述,这是不希望的。我究竟做错了什么?

最佳答案

你没有做错什么。只是为了方便起见,ghci 忽略了它加载的模块的范围规则。

如果您想查看通常可用的内容,您可以

:m -Queue
:m +Queue

您可以稍后返回“一切都可用”模式
:m *Queue

另见 What's really in scope at the prompt?在官方文档中。

关于haskell - 为什么我可以使用我的值构造函数,即使我不导出它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28116009/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com