Golang : Convert(cast) uintptr to string example
Problem:
You need a fast way to convert a variable of type uintptr
to type string
without using unsafe
package. Such as storing a process ID (pid) into a plain text file.
Solution:
Use fmt.Sprint()
function to convert the uintptr
value to type string. For example:
package main
import (
"fmt"
)
var ret uintptr = 123
func main() {
fmt.Println(ret)
// if you need to store the value
// into a string variable
str := fmt.Sprint(ret)
fmt.Println(str)
}
output:
123
123
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
+13.1k Golang : Count number of runes in string
+21.5k Golang : Use TLS version 1.2 and enforce server security configuration over client
+14.3k Golang : Missing Bazaar command
+9.4k Golang : Load ASN1 encoded DSA public key PEM file example
+33.6k Golang : Call a function after some delay(time.Sleep and Tick)
+4.6k JQuery : Calling a function inside Jquery(document) block
+7.1k Golang : Process json data with Jason package
+7.2k Golang : Get YouTube playlist
+17.5k Golang : Login and logout a user after password verification and redirect example
+8.2k Golang : Ackermann function example
+18.1k Golang : Read binary file into memory