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