Golang : How to iterate a slice without using for loop?
A very simple example on how to iterate a slice of integers without using a for
loop and use recursive method instead.
package main
import (
"fmt"
)
func main() {
integerSlice := []int{0, 1, 2, 3, 4}
loopIntegerSlice(integerSlice, 0)
}
func loopIntegerSlice(numbers []int, index int) int {
// iterate a slice and print out the elements without using a for loop
if index == len(numbers) {
return numbers[index-1] // break here
} else {
n := numbers[index]
fmt.Println(n)
return loopIntegerSlice(numbers, index+1) // use recursive method
}
}
Output:
0
1
2
3
4
See also : Golang : Find the length of big.Int variable example
By Adam Ng(黃武俊)
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+10k Golang : How to check if a website is served via HTTPS
+13.3k Golang : Strings comparison
+22.4k Golang : Strings to lowercase and uppercase example
+29k Golang : Saving(serializing) and reading file with GOB
+6.6k Android Studio : Hello World example
+14.4k Golang : Execute function at intervals or after some delay
+14.3k Golang : Find network of an IP address
+13.4k Golang : reCAPTCHA example
+18.7k Golang : Padding data for encryption and un-padding data for decryption
+7.6k Golang : Lock executable to a specific machine with unique hash of the machine
+17.4k Golang : [json: cannot unmarshal object into Go value of type]
+4.9k Golang : Check if a word is countable or not