|
Groovy example source code file (loop2.groovy)
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: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.