首页 > 编程语言 > 详细

Haskell语言学习笔记(81)Data.Typeable

时间:2018-07-11 23:47:35      阅读:247      评论:0      收藏:0      [点我收藏+]

Data.Typeable

利用 Data.Typeable,可以打印动态类型信息。

class Typeable (a :: k) where
  typeRep# :: TypeRep a

typeRep :: Typeable a => TypeRep a
typeRep = typeRep#

typeOf :: Typeable a => a -> TypeRep a
typeOf _ = typeRep

typeOf 函数可以返回某个值的类型信息。

Prelude> :m +Data.Typeable
Prelude Data.Typeable> :t typeOf 'a'
typeOf 'a' :: TypeRep
Prelude Data.Typeable> typeOf 'a'
Char

How can I read the metadata of a type at runtime?

Haskell语言学习笔记(81)Data.Typeable

原文:https://www.cnblogs.com/zwvista/p/9297291.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!