码迷,mamicode.com
首页 > 其他好文 > 详细

erlang自定义数据类型

时间:2014-07-11 23:26:47      阅读:507      评论:0      收藏:0      [点我收藏+]

标签:使用   数据   type   re   ar   c   

Erlang系统自带的基础数据类型有:atom、tuple、list、binary、pid、float、number、port、reference、record。

用户可以通过通过命令type来自定义数据类型,实现方法:

-type device() :: atom() | pid().

-type prompt() :: atom() | string().

定义完后,可以在模块中使用export_type,将用户自定义类型导出,以便其他模块重用。

-type env() :: [{atom(), any()}].
-export_type([env/0]).

erlang自定义数据类型,布布扣,bubuko.com

erlang自定义数据类型

标签:使用   数据   type   re   ar   c   

原文地址:http://www.cnblogs.com/yanllearnn/p/3832939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!