Groovy – get()

  • Post author:
  • Post category:Groovy
  • Post comments:0 Comments
Returns

Returns the element at the specified position in this Range.

Syntax

Object get(int index)

Parameters

Index โ€“ The index value to get from the range.

Return Value

The range value at the particular index.

Example

Following is an example of the usage of this method โˆ’

class Example { 
   static void main(String[] args) { 
      // Example of an Integer using def 
      def rint = 1..10;
		
      println(rint.get(2)); 
      println(rint.get(4)); 
   } 
}

When we run the above program, we will get the following result โˆ’

3 
5 

Previous Page:-Click Here

Leave a Reply