OCaml:获取值的类型名称

发布于 2024-12-03 22:17:05 字数 335 浏览 0 评论 0 原文

可以在 OCaml 中打印值的名称,例如,如果我有

type my_type =
  | MyType_First of int
  | MyType_Second of string

,然后执行以下操作:

let my_value = MyType_First 0 in
print_string ("my_value is of type " ^ String.from_type my_value ^ ".\n";

我可以获得“my_value 的类型为 MyType_First”吗? ?

谢谢。

Is is possible to print value's name in OCaml, for example if I have

type my_type =
  | MyType_First of int
  | MyType_Second of string

and then do something like:

let my_value = MyType_First 0 in
print_string ("my_value is of type " ^ String.from_type my_value ^ ".\n";

can I get "my_value is of type MyType_First." ?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请你别敷衍 2024-12-10 22:17:05

单晶型溶液:

let from_type = function
  | MyType_First _ -> "MyType_First"
  | MyType_Second _ -> "MyType_Second"

多晶型溶液:无。 (据我所知,即使指定了调试标志,与构造函数相对应的词法标记也不会记录在字节码/二进制文件中。唯一能做的就是使用一些暗 Obj.txt 来打印构造函数的整数“标识符”。魔法。)

Monomorphic solution:

let from_type = function
  | MyType_First _ -> "MyType_First"
  | MyType_Second _ -> "MyType_Second"

Polymorphic solution: none. (AFAIK, lexical tokens corresponding to constructors are not recorded in the bytecode/binary, even when debugging flags are specified. The only thing one could do is to print the integer ‘identifier’ for the constructor, using some dark Obj.magic.)

玻璃人 2024-12-10 22:17:05

您想要的是一种更简单的通用打印形式,并且在 OCaml 中不可用,但存在一些解决方法 - 例如 推导

What you want is a simpler form of generic print and is not available in OCaml as such, but some workarounds exist - e.g. deriving.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文