以下摘自The Go Programming Language:
There are also unary addition and subtraction operators:
+ unary positive (no effect)
– unary negation
For integers, +x is a shorthand for 0+x and -x is a shorthand for 0-x; for floating-point and complex numbers, +x is just x and -x is the negation of x.