f# 中的赋值运算符

发布于 2024-10-30 01:47:42 字数 118 浏览 0 评论 0原文

我在 ruby​​ 以及 powershell 编程中看到我们可以分配像 a,b=b,a 这样的变量。它实际上交换了变量。

这在 f# 中可能吗?如果可以,请指导我一些参考

i have seen in ruby as well powershell programming we can assign variables like a,b=b,a . it actually swaps the variable .

Is this possible in f# if so please guide me with some reference

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

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

发布评论

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

评论(1

你在看孤独的风景 2024-11-06 01:47:42

通常,F# 不允许变量重新分配。相反,它支持通过 let 绑定获得不可变的命名值。因此,以下情况是不可能的:

let a = 3
a = 4

除非您显式地将 a 标记为 mutable

let mutable a = 3
a <- 4

但是,F# 在大多数情况下允许变量“遮蔽”。对此的唯一限制是它不能在顶级模块上完成。但是,例如,在一个函数中,以下内容可以正常工作:

let f () =
    let a,b = 1,2
    let a,b = b,a //"swap"
    a,b

Generally, F# doesn't allow variable re-assignment. Rather it favors immutable named values via let bindings. So, the following is not possible:

let a = 3
a = 4

Unless you explicitly mark a as mutable:

let mutable a = 3
a <- 4

However, F# does allow in most situations variable "shadowing". The only restriction to this is that it can not be done on top level modules. But, within a function, for example, the following works fine:

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