作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是SML的新手(实际上是编程的人)。
fun readlist (infile : string) =
let
val
ins = TextIO.openIn infile
fun loop ins =
case TextIO.inputLine ins of
SOME line => line :: loop ins
| NONE => []
in
loop ins before TextIO.closeIn ins
end ;
最佳答案
如果可能存在某些无效值,则使用option
数据类型。
例如,
fun divide x y = if y == 0 then NONE else SOME (x / y)
TextIO.inputLine
返回
NONE
;如果有更多内容,则
SOME l
返回
l
,即其中已读取的行。
before
是低优先级(所有功能中最低的)的infix函数,它首先评估其左手边,然后是右手边,然后返回左手边的值。
'a * unit -> 'a
,即右侧仅用于其副作用。
fun readlist (infile : string) =
let
val ins = TextIO.openIn infile
fun loop indata =
case TextIO.inputLine indata of
SOME line => line :: loop indata
| NONE => []
val result = loop ins
in
TextIO.closeIn ins;
result
end
关于sml - SML中的SOME和NONE选项有哪些?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24980801/
我是一名优秀的程序员,十分优秀!