其他分享
首页 > 其他分享> > 【无标题】

【无标题】

作者:互联网

关于ERLANG开发的笔记

1.spec函数注释

使用-spec对函数进行函数参数和返回值的定义

2.type类型定义

使用-type对一个变量进行定义,类似T:::A|B|C这样,后面的ABC表示该变量可选的值,而T表示引用该变量的时候的名称。
例如
-type point() :: {integer() , integer()}. % 类型定义
-spec plan_route(point(),point()) -> route(). % 类型规范

标签:point,route,无标题,类型定义,integer,type,spec
来源: https://blog.csdn.net/qq_21120857/article/details/121905243