gpt4 book ai didi

haskell - Haskell 中是否有返回其参数类型(或显示类型的字符串)的函数?

转载 作者:行者123 更新时间:2023-12-03 14:56:59 25 4
gpt4 key购买 nike

有没有可以在 Haskell 程序中调用的函数来执行 :t互动吗?或者这是 Haskell 不能做的事情,因为它的类型没有意义。将类型名称作为字符串返回的函数呢?

最佳答案

typeOf 是执行此操作的规范方法。请注意,它不能(不能)处理多态性以及语言之外的工具可以。

Data.Typeable> typeOf ()
()
Data.Typeable> typeOf "hi"
[Char]
Data.Typeable> typeOf 3 -- hmmm....
Integer
Data.Typeable> typeOf id -- HMMMMMM...
<interactive>:4:1: error:
• No instance for (Typeable a0) arising from a use of ‘typeOf’
• In the expression: typeOf id
In an equation for ‘it’: it = typeOf id

关于haskell - Haskell 中是否有返回其参数类型(或显示类型的字符串)的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50336662/

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