Haskell - 执行错误

发布于 2024-11-01 07:00:13 字数 394 浏览 0 评论 0原文

我尝试编写一个这个 monad

data W x = W x [String]

instance Monad W where
return x = W x []
W a h1 >>= f = case f a of 
    W b h2 -> W b (h1++h2)

但是,现在当我使用这个 monad 并尝试在代码中编写 return 或 >>= 时,我通过编译得到警告:

实例声明中没有 Prelude.return 的显式方法或默认方法。 Prelude 没有显式方法,也没有默认方法。实例声明中>>=。

有谁知道如何解决这个警告?

非常感谢

I try to write a this monad

data W x = W x [String]

instance Monad W where
return x = W x []
W a h1 >>= f = case f a of 
    W b h2 -> W b (h1++h2)

But, now when i will use this monad and try to write return or >>= in code I get by compilation the warnings:

No explicit method nor default method for Prelude.return in the instance declaration.
No explicit method nor default method for Prelude.>>= in the instance declaration.

Does anyone know how to fix this warnings?

thank you very much

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迟月 2024-11-08 07:00:13

假设代码的布局与您的问题中显示的完全相同,问题是您的 return>>= 定义没有缩进,因此它们被定义为与 Monad 类无关的新顶级函数。缩进它们,它应该可以工作。

Assuming that the layout of the code is exactly as displayed in your question, the problem is that your return and >>= definitions are not indented, so they are being defined as new top-level functions unrelated to the Monad class. Indent them and it should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文