zoukankan      html  css  js  c++  java
  • 4 练习: 使用eclipse开发

    1       练习: 使用eclipse开发

    1.1  练习目标

    本例讲述在使用eclipse如何创建groovy程序。

    1.2  创建new Groovy project

    本例假设你已经安装好了groovy和eclipse并且配置好了。

    创建一个新的Groovy的项目

    叫做com.vogella.groovy.first

    操作如下:the File → New → Other → Groovy → Groovy Project.

    最后,创建了一个类似java项目的但是比java项目多了groovy libraries。

    Create the following code.

    package first

     

    class FirstGroovy {

     

        static main(def args) {

           def myList = [1,2,"Lars","4"]

           myList.each {println it}

          

        }

     

    }

    1.3  运行Groovy class

    右键,选择“Run As → Groovy Scrip

  • 相关阅读:
    请求headers处理
    requests模块
    urllib3
    urllib
    百度AI搜索引擎
    CSS层叠样式表--使用
    学习requests_html
    聚合新闻头条
    爬虫工程师的月薪如何?
    Linux日志系统
  • 原文地址:https://www.cnblogs.com/yaoyuan2/p/5708951.html
Copyright © 2011-2022 走看看