gpt4 book ai didi

f# - 如何返回多个值并将它们分配给可变变量?

转载 作者:行者123 更新时间:2023-12-03 03:47:55 24 4
gpt4 key购买 nike

这就是我到目前为止所拥有的。

let Swap (left : int , right : int ) = (right, left)

let mutable x = 5
let mutable y = 10

let (newX, newY) = Swap(x, y) //<--this works

//none of these seem to work
//x, y <- Swap(x, y)
//(x, y) <- Swap(x, y)
//(x, y) <- Swap(x, y)
//do (x, y) = Swap(x, y)
//let (x, y) = Swap(x, y)
//do (x, y) <- Swap(x, y)
//let (x, y) <- Swap(x, y)

最佳答案

你不能;没有语法可以通过一次赋值来更新“多个可变变量”。当然可以

let newX, newY = Swap(x,y)
x <- newX
y <- newY

关于f# - 如何返回多个值并将它们分配给可变变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/946977/

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