PLT 板


LINE

看板 PLT  RSS
※ 引述《etwas (i'm only dust)》之铭言: : data DataInt = D Int : deriving (Eq, Ord, Show) : newtype NewtypeInt = N Int : deriving (Eq, Ord, Show) : ===== : ghci> case undefined of D _ -> 1 : *** Exception: Prelude.undefined : the author wrote: : "the unprotected undefined is evaluated when the pattern match occurs". : i realise that matching is based on value constructors. : but under what circumstances does it have to evaluate them? 大致上,如果一个值去 match 一个 data constructor 的时候 就必须被 evaluate 成 weak head normal form (WHNF). 在这个 例子中,undefined 要和 D _ 配对,於是电脑试着把 undefined evalulate 成 WHNF,但当然做不到。於是就开始 loop 了。 : in this case, does pattern matching run into a divergence? 是的。通常 divergence 指的是无法「聚合」成一个值。 : pattern matching, does it happen in runtime, compile time or both? 在 Haskell 中应该是只有 runtime 才会发生的。 : if it's a runtime process, then some sort of bookkeeping data about : constructors should be retained during programme execution, right? 是的。基本上 runtime 时的值都有某些方式让我们可测出它 是什麽东西。例如一个 list, 我们当然得知道它是或不是空 的 (是 [] 或是 _:_ ). : ghci> case undefined of N _ -> 1 : 1 NewtypeInt 是用 newtype 定义的, 因此和 DataInt 有些不同。 如果我们宣告 newtype T = C U, 定出的 T 其实「就是」U. newtype 的使用时机是我们想把某些 U 当作不一样的 type (例如定义成某些 class 的 instance),但不想要多耗费一个 data constructor 去包它。 所以 NewtypeInt 的那个 N 其实是不存在的。去 match N _ 和 match _ 其实是一样的事情。因此上面的式子不会 loop. : but something like : ghci> case 10.77 of N _ -> 1 : ghci> case "a string" of N _ -> 1 : justifiably fail : regarding to the author's explanation, why the two cases fail while : the "undefined" case succeeds? 以上这两个情形都会出现 type error. 那又是另一个层次的问题了... :) --



※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 220.136.48.247







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:Soft_Job站内搜寻

TOP