gpt4 book ai didi

f# - 4.5 版中的阴影

转载 作者:行者123 更新时间:2023-12-04 07:15:22 27 4
gpt4 key购买 nike

我开始学习 F# 语言。
我正在使用 VS Community 2017。F# 4.5

我有一个关于阴影的问题。
看起来它对我不起作用。当我使用同名绑定(bind)时,它会告诉“值'x'的重复定义”。
代码有什么问题?

let x = "one"
let x = "second"
let x = "third"

最佳答案

您不能在模块级别隐藏值。

您可以像函数一样在其他范围内隐藏值:

let f () =
let x = "one"
let x = "second"
let x = "third"
x

关于f# - 4.5 版中的阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57141395/

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