Golang : cannot assign type int to value (type uint8) in range error
Sometimes, we tend to overlook a small part of for--loop just because we use it frequently and expect the compiler or linker to alert us of the problem before run time. The problem described below is only visible during run time :
Problem :
You get an error message that look like this :
cannot assign type int to value (type uint8) in range
or something similar when trying to use range. For example :
package main
import "fmt"
func main() {
var xs []uint8 = []uint8{123, 124, 125}
var value uint8
for value = range xs {
fmt.Println(value)
}
}
Solution :
That is because, range over a slice or array will return 2 values.... but yet the code will compile will issue! To fix this error. Change the codes to :
package main
import "fmt"
func main() {
var xs []uint8 = []uint8{123, 124, 125}
var value uint8
for _, value = range xs { // ignore the key
fmt.Println(value)
}
}
or
package main
import "fmt"
func main() {
var xs []uint8 = []uint8{123, 124, 125}
var key uint8
var value uint8
for key, value = range xs { // assign the key to a variable.
fmt.Println(key, value)
}
}
output :
0 123
1 124
2 125
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
+11.2k Golang : Simple image viewer with Go-GTK
+7k Golang : Normalize email to prevent multiple signups example
+7.4k Golang : Fixing Gorilla mux http.FileServer() 404 problem
+4.9k HTTP common errors and their meaning explained
+15k Golang : Basic authentication with .htpasswd file
+12.1k Golang : Decompress zlib file example
+22.9k Golang : untar or extract tar ball archive example
+7.3k CloudFlare : Another way to get visitor's real IP address
+5.5k Golang : Get S3 or CloudFront object or file information
+7.3k Ubuntu : connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream
+14.9k Golang : Find commonalities in two slices or arrays example