Golang : Clone with pointer and modify value
For those familiar with C language and learning Golang, bear in mind that Golang supports pointer. In this short tutorial, we will learn how to create a struct tied to pointer, how to clone and manipulated the struct data with the pointer(second := *first
).
The code example below should be self explanatory. Should you have any question, please leave a comment below.
package main
import (
"fmt"
)
type User struct {
Id int
Name string
}
func createUser() *User {
newUser := new(User)
newUser.Id = 1
newUser.Name = "Adam"
return newUser
}
func main() {
// create our first user
first := createUser()
fmt.Printf("first user id is %d and name is %s\n", first.Id, first.Name)
// clone first user to second user
second := *first
// data are cloned as well
fmt.Printf("second user id is %d and name is %s\n", second.Id, second.Name)
// now modify second user's name and id
second.Id = 2
second.Name = "Victoria"
fmt.Printf("[modified] second user id is %d and name is %s\n", second.Id, second.Name)
}
Output :
first user id is 1 and name is Adam
second user id is 1 and name is Adam
[modified] second user id is 2 and name is Victoria
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
+7.1k Golang : Fixing Gorilla mux http.FileServer() 404 problem
+5.2k Golang : What is StructTag and how to get StructTag's value?
+13.6k Golang : Convert spaces to tabs and back to spaces example
+8.6k Golang : Accept any number of function arguments with three dots(...)
+19.8k Golang : Compare floating-point numbers
+10.3k Generate Random number with math/rand in Go
+5k Python : Create Whois client or function example
+9.2k Golang : Terminate-stay-resident or daemonize your program?
+19.3k Golang : Example for DSA(Digital Signature Algorithm) package functions
+14.5k Golang : Find commonalities in two slices or arrays example
+7.2k Golang : How to convert strange string to JSON with json.MarshalIndent
+17.3k Golang : delete and modify XML file content