Q: What should I pay attention to when changing values in the Go language?
In Go language, all value assignment operations (=) are copy operations, so if the value needs to be changed, only changing the copy cannot change the value of the original object, only using pointer operations can directly change the value of the original object.