gpt4 book ai didi

haskell - 成功导入的数据构造函数不在范围内?

转载 作者:行者123 更新时间:2023-12-02 16:07:17 24 4
gpt4 key购买 nike

这是怎么回事?我正在导入一个数据构造函数,显然成功了,因为我没有收到错误,但是当我尝试使用该构造函数时,我收到一条错误,指出它不在范围内!

Test.hs中:

import Database.Persist (Key)

main = Key

结果:

$ ghc test.hs
[1 of 1] Compiling Main ( test.hs, test.o )

test.hs:3:8: Not in scope: data constructor `Key'

最佳答案

import Database.Persist (Key)

上面导入了一个名为Key的类型,但没有导入它的构造函数。要导入 Key 类型的构造函数 Key,您需要执行以下操作

import Database.Persist (Key(Key))

或者只是

import Database.Persist (Key(..))

导入给定类型的所有构造函数。

关于haskell - 成功导入的数据构造函数不在范围内?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20835087/

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