사용자 도구

사이트 도구


groovy:제어문

Groovy 제어문

for

  • for 문은 거의 사용할 일이 없다.
  • Index가 필요한 for 문은 list.eachWithIndex { obj, idx → 처리문… } 형태로 만들면 된다.
    def stringList = [ "java", "perl", "python", "ruby", "c#", "cobol",
                       "groovy", "jython", "smalltalk", "prolog", "m", "yacc" ]
     
    stringList.eachWithIndex() { obj, i -> println " ${i}: ${obj}" }

switch/case

groovy/제어문.txt · 마지막으로 수정됨: 2013/05/17 14:50 저자 kwon37xi