作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这段代码:
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/
我是一名优秀的程序员,十分优秀!