我是F#的新手,我试图弄清楚如何从字符串列表/字符串数组中返回随机字符串值。
我有一个这样的 list :
["win8FF40", "win10Chrome45", "win7IE11"]
如何从上面的列表中随机选择并返回一项?
这是我的第一次尝试:
let combos = ["win8FF40";"win10Chrome45";"win7IE11"]
let getrandomitem () =
let rnd = System.Random()
fun (combos : string[]) -> combos.[rnd.Next(combos.Length)]
最佳答案
您的问题是您混用了Array
和F#List
(*type*[]
是Array
的类型符号)。您可以像这样修改它以使用列表:
let getrandomitem () =
let rnd = System.Random()
fun (combos : string list) -> List.nth combos (rnd.Next(combos.Length))
话虽如此,索引
List
通常不是一个好主意,因为它具有O(n)性能,因为F#列表基本上是链接列表。如果可能的话,最好将combos
制成数组:let combos = [|"win8FF40";"win10Chrome45";"win7IE11"|]