gpt4 book ai didi

haskell - 如何在 where 子句中使用 do block 赋值行中的变量?

转载 作者:行者123 更新时间:2023-12-04 22:02:43 25 4
gpt4 key购买 nike

我有以下代码示例:

{-# LANGUAGE ScopedTypeVariables #-}

main = do
putStrLn "Please input a number a: "
a :: Int <- readLn
print a

putStrLn "Please input a number b: "
b :: Int <- readLn
print b

putStrLn ("a+b+b^2:" ++ (show $ a+b+c))
where c = b^2

出于某种原因,我不能使用变量 bwhere子句,我得到的错误如下:
Main3.hs:13:15: error: Variable not in scope: b
|
13 | where c = b^2
| ^

任何想法如何制作 b可在 where条款?

最佳答案

使用let而不是 where :

{-# LANGUAGE ScopedTypeVariables #-}

main = do
putStrLn "Please input a number a: "
a :: Int <- readLn
print a

putStrLn "Please input a number b: "
b :: Int <- readLn
print b

let c = b^2
putStrLn ("a+b+b^2:" ++ (show $ a+b+c))

问题的原因是 where 中的变量子句在所有 main 的范围内, 但是 b直到 b :: Int <- readLn 之后才在范围内.一般情况下, where子句不能引用绑定(bind)在 do 内的变量 block (或 = 右侧的任何位置,就此而言:例如, f x = y*2 where y = x+1 很好,但 f = \x -> y*2 where y = x+1 不是)。

关于haskell - 如何在 where 子句中使用 do block 赋值行中的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59708551/

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