gpt4 book ai didi

f# - 在 f# 中读取未知行数

转载 作者:行者123 更新时间:2023-12-04 23:48:47 26 4
gpt4 key购买 nike

假设我有 n (在这种情况下为 7 个)输入给定

10

20

30

40

50

60

70


如何读取所有输入并将它们存储在列表/数组中?
我试过这个,
let inputList = [
while (let line = Console.ReadLine()) <> null do
line |> int
]
这个想法是阅读,直到我得到一个空行。
但我收到以下错误,

Block following this 'let' is unfinished. Expect an expression.

最佳答案

要以功能样式执行此操作,您可以使用 Seq.initInfinite从控制台创建序列。
然后,当您使用 Seq.takeWhile 获得空值时,您需要终止此列表。 .除此之外,您可以使用所有 Seq可用的模块功能包括Seq.toList .

let read _ = Console.ReadLine()
let isValid = function null -> false | _ -> true
let inputList = Seq.initInfinite read |> Seq.takeWhile isValid |> Seq.toList

关于f# - 在 f# 中读取未知行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27795828/

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