alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Groovy example source code file (loop2.groovy)

This example Groovy source code file (loop2.groovy) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Groovy tags/keywords

arraylist, arraylist, loop2, loop2, object, object, starting, starting

The Groovy loop2.groovy source code

package groovy.benchmarks

class Loop2 {
  def array = new ArrayList()
  def pos = 0

  void push(obj){
     array[pos] = obj
     pos = pos + 1
  }

  Object pop(){
     pos = pos - 1
     return array[pos]
  }

  static void main(args){
     println "Starting the Loop2 test"
      
     def s = new Loop2()
     for (i in 1..1000000){
       s.push(i)
     }
     for (i in 1..1000000){
       s.pop()
     }
  }
}

Other Groovy examples (source code examples)

Here is a short list of links related to this Groovy loop2.groovy source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.