摘要: 出处:http://www.erlang.org/course/concurrent_programming.html1. 定义 a. process 一个concurrent activity, 【线程,进程,whatever】,erlang的虚拟机环境会负责将所有的process并发 b. Message 一种activity之间交换传达message的方法 c. Timeout 一种等待一定时间的机制,方法 d. registered process 一个注册的 concurrent process, 有名字 e. Server/client Model 服务端/客户端模型 并... 阅读全文
posted @ 2013-05-04 16:24 ~嘉言懿行~~我是煲仔饭~~ 阅读(175) 评论(0) 推荐(0) 编辑
摘要: Sequential Programming出处:http://www.erlang.org/course/sequential_programming.html1. 数字 erlang下数字有两种,整型 和 浮点型 a 整型 10 %%正整数字 -234 %% 16#AB10F %%16进制整数 2#110111010 %%2进制整数 【最多36】 $A %% 字符A的ascii码 b 浮点型 17.368 -56.654 12.34E-102 Atoms a... 阅读全文
posted @ 2013-05-04 12:47 ~嘉言懿行~~我是煲仔饭~~ 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1. History出处:http://www.erlang.org/course/history.html1982 - 1985Experiments with programming of telecom using > 20 different languages. Conclusion: The language must be a very high level symbolic language in order to achive productivity gains ! (Leaves us with: Lisp , Prolog , Parlog ...)1985 - 阅读全文
posted @ 2013-05-04 12:46 ~嘉言懿行~~我是煲仔饭~~ 阅读(229) 评论(0) 推荐(0) 编辑