1.没安装Eclipse的,先下载Eclipse(别告诉我你还没有安装java)。
现阶段最新版是3.4.1的ganymede版,根据各自的需求,下载相应发行版。
http://www.eclipse.org/downloads/
2.下载安装Erlang
现阶段最新版为5.6.5 R12B-5版。
http://www.erlang.org/download.html
3.安装Erlide插件
打开Eclipse,在菜单上依次选择[help]->[software updates...],单击[available software]tab,点击[add site...],追加Erlide的安装url[http://erlide.sourceforge.net/update],打开添加网址的折叠十字架,选择你要安装的版本,然后点击右边的[install...]按钮,安装好后,重新启动。
当然,如果你不喜欢这种安装方式,可以手动安装,以便可以自由管理插件。
4.配置Erlide
在菜单上依次选择[Window]->[preference],在左边选择栏找到[Erlang]->[Installed runtimes],然后点击右边的[add]按钮,选择你安装Erlang的路径,如果你有多个Erlang安装版本可以依次设置。
5.新建工程
在菜单上依次选择[File]->[New]->[Project],然后选择[Erlang]->[Erlang Project]。填写Project Name,比如“ElTest”,余下的按默认设置,点击[Next],最后是[Finish]。
6.新建module
在左边新建的project里右键点击[src],选择[new module],在弹出的窗口里填入以下信息。
Module name:Test
Container:/ElTest/src (默认)
Application name:None (默认)
Skeleton:None (默认)
在最下面的两个输入框里输入say(这个是方法名)和0(参数个数),然后点击[Apply]按钮。最后点击[finish]按钮。
编辑新生成的module如以下代码
Java代码
1. 1. %% Author: WQF
2. 2. %% Created: 2008-11-9
3. 3. %% Description: TODO: Add description to test
4. 4. -module(test).
5. 5.
6. 6. %%
7. 7. %% Include files
8. 8. %%
9. 9.
10. 10. %%
11. 11. %% Exported Functions
12. 12. %%
13. 13. -export([say/0]).
14. 14.
15. 15. %%
16. 16. %% API Functions
17. 17. %%
18. 18.
19. 19. %%
20. 20. %% TODO: Add description of say/function_arity
21. 21. %%
22. 22. say() ->
23. 23. io:format("hello, world/n").
24. 24.
25. 25.
26. 26. %%
27. 27. %% Local Functions
28. 28. %%
29.
30.%% Author: WQF
31.%% Created: 2008-11-9
32.%% Description: TODO: Add description to test
33.-module(test).
34.
35.%%
36.%% Include files
37.%%
38.
39.%%
40.%% Exported Functions
41.%%
42.-export([say/0]).
43.
44.%%
45.%% API Functions
46.%%
47.
48.%%
49.%% TODO: Add description of say/function_arity
50.%%
51.say() ->
52. io:format("hello, world/n").
53.
54.
55.%%
56.%% Local Functions
57.%%
1. %% Author: WQF
2. %% Created: 2008-11-9
3. %% Description: TODO: Add description to test
4. -module(test).
5.
6. %%
7. %% Include files
8. %%
9.
10. %%
11. %% Exported Functions
12. %%
13. -export([say/0]).
14.
15. %%
16. %% API Functions
17. %%
18.
19. %%
20. %% TODO: Add description of say/function_arity
21. %%
22. say() ->
23. io:format("hello, world/n").
24.
25.
26. %%
27. %% Local Functions
28. %%
%% Author: WQF
%% Created: 2008-11-9
%% Description: TODO: Add description to test
-module(test).
%%
%% Include files
%%
%%
%% Exported Functions
%%
-export([say/0]).
%%
%% API Functions
%%
%%
%% TODO: Add description of say/function_arity
%%
say() ->
io:format("hello, world/n").
%%
%% Local Functions
%%
7.配置运行project
右键点击Project,依次选择[run as]->[run configurations],在弹出的窗口,右键点击左边一览的[Erlang application],选择[new]。
在右边的[main]页面,选择要运行的project(这儿默认是ElTest),
在[runtimes]页面,依次选择,填入以下
runtime:Erl5.6.5
NodeName: test
Cookie: 默认什么都不填
选择[Start the Erlang node if not running already]
然后点击[run]按钮
在下面的Console窗口,输入test:say().
( 注意后面的那个句点。)
你就会看到传说中的hello,world了。
Erlang自学入门:Erlide安装方法
最新推荐文章于 2023-08-15 15:56:49 发布