gpt4 book ai didi

haskell - 如何隐式导入模块

转载 作者:行者123 更新时间:2023-12-03 13:32:30 25 4
gpt4 key购买 nike

模块 A 导入 Data.Char

模块 B 导入模块 A

那么模块 B 会自动导入 Data.Char 吗?

如果不需要,我是否需要在模块 A 中显式导入 Data.Char?

在我的程序中,模块 B 无法访问 Data.Char 中的类型

最佳答案

您可以导出Data.Char来自模块 A .

module A (
-- ... other functions
module Data.Char
-- ... other functions
) where

import Data.Char

现在当你 import A , Data.Char将可用。

关于haskell - 如何隐式导入模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23247578/

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