如何在 haskell 中使用常量以避免幻数?
假设我有一个从 1 到 MAGIC_NUMBER 的数字列表 - 有没有办法可以提前声明这一点?
Say I have a list of numbers from 1 to MAGIC_NUMBER -- Is there a way I can declare this beforehand ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当然。事实上,鉴于 Haskell 是纯函数式的,定义常量比定义非常量要容易得多。
Sure. In fact, given that Haskell is purely functional, it's much easier to define a constant than a non-constant.
Chuck和Ony的答案是正确的。您应该注意一个陷阱:
这不是您所期望的 - 第二行中的
magicNum
是一种匹配所有内容的模式,就像fx = 'A'
一样。使用 fx | x == magicNum = 'A'。Chuck's and ony's answers are correct. There's one trap you should be aware of:
is NOT what you might expect -
magicNum
in second line is a pattern that matches everything, just likef x = 'A'
. Usef x | x == magicNum = 'A'
.您可以在所有计算中使用代数数据,并使用一些命名值(如果它们确实“神奇”),或者将代数值构建为“神奇”数字等等:
You can use algebraic data in all your calculations and use some named values if they are really "magic", or build render of algebraic values to "magic" numbers and many more: