gpt4 book ai didi

f# - 有没有办法在 F# 中通过字符串获取记录字段?

转载 作者:行者123 更新时间:2023-12-04 02:41:02 27 4
gpt4 key购买 nike

我想通过查找字符串来获取记录中某个字段的值。

type Test = { example : string  }
let test = { example = "this is the value" }
let getByName (s:string) =
???? //something like test.GetByName(s)

最佳答案

标准.net reflection在这种情况下应该可以正常工作。记录字段作为属性公开,因此您可以使用反射 API 查询类型。它可能看起来像这样:

  let getByName (s:string) =
match typeof<Test>.GetProperties() |> Array.tryFind (fun t -> t.Name = s)
with
| Some pi -> Some(pi.GetValue(test))
| None -> None

关于f# - 有没有办法在 F# 中通过字符串获取记录字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59421595/

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