Eclipse创建你的第一个程序Groovy(图文版)

 

NOTE: In this tutorial, the Groovy-Eclipse plugin is running on Eclipse 3.5.1. The user interface and task flow may vary somewhat in Eclipse 3.4.2.

GETTING HELP – If you have problems, send a message to http://xircles.codehaus.org/lists/eclipse-plugin-user@groovy.codehaus.org.

 

 

Do

See

1

In Eclipse, click File > New > Groovy Project.

If Groovy Project does not appear in the drop-down list, then select Other and search for Groovy Project in the dialog box.

 

2

In the New Groovy Project wizard, type a name in the Project Name box, and clickNext

GroovyEclipse creates the project and a folder structure for it. A folder with the same name as the project appears in the Package Explorer. The project directory contains a srcand a bin folder, each empty.

 

3

The tabs and options in the Build Settingswindow are identical to those in the the Java Development Tool (JDT). 

Click Finish to proceed without customizing the build settings. 

For information about build options, see Eclipse help for the New Java Project Wizard; it applies to Groovy projects as well.

 

4

Select the project in the Package Explorer, and click File > New > Groovy Class.

5

In the Groovy Class wizard, type a name for the class in the Name box, a name for the package in the Package field, and clickFinish to create the class and package. 

If you type the name of an existing package in thePackage field, the class is created there. 

Just like in the JDT, you can create a package as a separate step with File > New > Package, or when you use the create the first class

 

6

GroovyEclipse creates the new class. The new class, Greetings.groovy in this example, is listed in the Package Explorer, and opened in the editor. 

Note that, as generated by GroovyEclipseGreetings.groovy already contains the package statement and class declaration.

 

7

Paste this code into the file: 

static void main(def args) { 
   def mygreeting = "Hello World" 
   println mygreeting 
}

8

Right click anywhere in the editor and thenRun > Run As > Groovy Script or Java Application.

Running as an Application will launch the compiled *.class files, whereas running as aScript will launch the uncompiled *.groovy files. In general, the results will be the same, but there are some subtle differences between the two.

 

9

The greeting is issued in the Console tab.

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值