gpt4 book ai didi

f# - 如何将 int64 转换为 Nullable

转载 作者:行者123 更新时间:2023-12-02 07:35:18 26 4
gpt4 key购买 nike

这段代码:

let mutable x : Nullable<int64> = new  Nullable<int64> 99L
let y : int64 = 88L
x <- y

产生这个编译时错误:

This expression was expected to have type Nullable but here has type int64

我理解错误,我想知道将 y (88) 中的值分配给 x 的正确方法(转换?)是什么?

最佳答案

使用 System.Nullable构造器;例如:

> 
let mutable x = System.Nullable (99L)
let y = 88L
x <- System.Nullable y;;

val mutable x : Nullable<int64> = 88L
val y : int64 = 88L
val it : unit = ()

关于f# - 如何将 int64 转换为 Nullable<int64>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17172760/

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