gpt4 book ai didi

f# - 进行赋值时是否可以在 F# 中强制记录类型?

转载 作者:行者123 更新时间:2023-12-01 05:30:42 24 4
gpt4 key购买 nike

为了解释我认为最好举个例子:

type myRec = {x: string}
type myRec2 = {x: string}
let x = {x = "hello"}
let y(a: myRec) = a.x
y(x);;

y(x);;
--^

error FS0001: This expression was expected to have type
myRec
but here has type
myRec2

那么我如何强制 x有类型 myRec如果两者都 myRecmyRec2有相同的签名吗?

最佳答案

let x = { myRec.x = "hello" }
// or
let x:myRec = { x = "hello" }
// or
let x = { x = "hello" } : myRec

更多详细信息和示例可在 the documentation 中找到.

编辑:从评论中合并了替代方案。

关于f# - 进行赋值时是否可以在 F# 中强制记录类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20440957/

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